diff options
Diffstat (limited to 'composer.json')
-rw-r--r-- | composer.json | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..926f961 --- /dev/null +++ b/composer.json @@ -0,0 +1,33 @@ +{ + "name": "etsy/phan", + "description": "A static analyzer for PHP", + "keywords": ["php", "static", "analyzer"], + "type": "project", + "license": "MIT", + "authors": [ + { + "name": "Rasmus Lerdorf" + }, + { + "name": "Andrew S. Morrison" + } + ], + "require": { + "php": ">=7.0", + "ext-ast": "*", + "ext-sqlite3": "0.7-dev", + "symfony/console": "~2.3|~3.0" + }, + "require-dev": { + "phpunit/phpunit": "~5", + "phpdocumentor/phpdocumentor": "dev-master", + "squizlabs/php_codesniffer": "^2.5" + }, + "autoload": { + "psr-4": {"Phan\\": "src/Phan"} + }, + "autoload-dev": { + "psr-4": {"Phan\\Tests\\": "tests/Phan"} + }, + "bin": ["phan", "tocheckstyle"] +} |