From b4b1204e25d84e1118d3145309103f7480f2ed03 Mon Sep 17 00:00:00 2001 From: Pavel Shevaev Date: Mon, 16 May 2022 15:25:48 +0300 Subject: [PATCH] Fixing autoloading --- composer.json | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/composer.json b/composer.json index f85c2d1..7af1cd2 100644 --- a/composer.json +++ b/composer.json @@ -6,6 +6,17 @@ "php": ">=7.4" }, "autoload": { - "files": ["metagen.inc.php", "targets/php/*.php", "targets/cs/*.php", "targets/go/*.php"] + "files": [ + "metagen.inc.php", + "targets/php/php.inc.php", + "targets/php/php_generator.inc.php", + "targets/php/php_tpl.inc.php", + "targets/cs/cs.inc.php", + "targets/cs/cs_generator.inc.php", + "targets/cs/cs_tpl.inc.php", + "targets/go/go.inc.php", + "targets/go/go_generator.inc.php", + "targets/go/go_tlp.inc.php" + ] } }