diff options
Diffstat (limited to 'composer.json')
-rw-r--r-- | composer.json | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..edf42f6 --- /dev/null +++ b/composer.json @@ -0,0 +1,26 @@ +{ + "name": "seld/phar-utils", + "description": "PHAR file format utilities, for when PHP phars you up", + "type": "library", + "keywords": ["phra"], + "license": "MIT", + "require": { + "php": ">=5.3" + }, + "authors": [ + { + "name": "Jordi Boggiano", + "email": "j.boggiano@seld.be" + } + ], + "autoload": { + "psr-4": { + "Seld\\PharUtils\\": "src/" + } + }, + "extra": { + "branch-alias": { + "dev-master": "1.x-dev" + } + } +} |