diff --git a/.gitignore b/.gitignore index dfa8d78..fb9b0d4 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,6 @@ /.idea -/bin/phing +/bin/ /composer.lock /custom.task.properties /custom.type.properties -/vendor \ No newline at end of file +/vendor diff --git a/build.xml b/build.xml index 9de997b..9c7ac72 100644 --- a/build.xml +++ b/build.xml @@ -1,10 +1,26 @@ - + + + - + + + + + + + + + + + + + + + diff --git a/composer.json b/composer.json index a53736a..bfc7346 100644 --- a/composer.json +++ b/composer.json @@ -9,9 +9,9 @@ "minimum-stability": "dev", "prefer-stable": true, "require": { - "php": ">=7.4", - "phing/phing": "^3.0.0", - "setbased/helper-program-execution": "^1.0" + "php": ">=8.1", + "phing/phing": "^3.0.0-RC4", + "setbased/helper-program-execution": "^1.2.0" }, "autoload": { "psr-4": { @@ -20,6 +20,9 @@ }, "config": { "bin-dir": "bin/", - "sort-packages": true + "sort-packages": true, + "allow-plugins": { + "phing/phing-composer-configurator": true + } } }