summaryrefslogtreecommitdiff
path: root/composer.json
diff options
context:
space:
mode:
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json28
1 files changed, 28 insertions, 0 deletions
diff --git a/composer.json b/composer.json
new file mode 100644
index 0000000..f1b9ba7
--- /dev/null
+++ b/composer.json
@@ -0,0 +1,28 @@
+{
+ "name": "dweipert/php-iac",
+ "type": "library",
+ "license": "AGPL-3.0-only",
+ "authors": [
+ {
+ "name": "Daniel Weipert",
+ "email": "code@drogueronin.de"
+ }
+ ],
+ "require": {
+ "php": "^8.0",
+ "symfony/console": "^5.2",
+ "petrknap/php-singleton": "^1.0",
+ "phpseclib/phpseclib": "^3.0"
+ },
+ "autoload": {
+ "psr-4": {
+ "PHPIAC\\": "src"
+ }
+ },
+ "bin": [
+ "bin/iac"
+ ],
+ "scripts": {
+ "compile": "@php -dphar.readonly=0 bin/compile"
+ }
+}