summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
authorRemi Collet <fedora@famillecollet.com>2016-06-29 15:35:16 +0200
committerRemi Collet <fedora@famillecollet.com>2016-06-29 15:35:16 +0200
commit1e075901d297d2225f5e1159ca342274d0e3faea (patch)
tree0ea20d418682fa1f4563644cd3e2d6b6c5561d73 /composer.json
parentee919013dd542415c5ab73d37d7c3600bc619093 (diff)
php-ocramius-code-generator-utils: 0.4.0
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json45
1 files changed, 45 insertions, 0 deletions
diff --git a/composer.json b/composer.json
new file mode 100644
index 0000000..e74f4b5
--- /dev/null
+++ b/composer.json
@@ -0,0 +1,45 @@
+{
+ "name": "ocramius/code-generator-utils",
+ "description": "A set of code generator utilities built on top of PHP-Parsers that ease its use when combined with Reflection",
+ "type": "library",
+ "license": "MIT",
+ "homepage": "https://github.com/Ocramius/CodeGenerationUtils",
+ "keywords": [
+ "reflection",
+ "code generation",
+ "php code",
+ "parser",
+ "compiler"
+ ],
+ "authors": [
+ {
+ "name": "Marco Pivetta",
+ "email": "ocramius@gmail.com",
+ "homepage": "http://ocramius.github.com/"
+ }
+ ],
+ "require": {
+ "php": "~7.0",
+ "nikic/php-parser": "~2.0"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "~5.0",
+ "squizlabs/php_codesniffer": "~2.0"
+ },
+ "autoload": {
+ "psr-4": {
+ "CodeGenerationUtils\\": "src/CodeGenerationUtils"
+ }
+ },
+ "autoload-dev": {
+ "psr-4": {
+ "CodeGenerationUtilsTests\\": "tests/CodeGenerationUtilsTests",
+ "CodeGenerationUtilsTestAsset\\": "tests/CodeGenerationUtilsTestAsset"
+ }
+ },
+ "extra": {
+ "branch-alias": {
+ "dev-master": "1.0.x-dev"
+ }
+ }
+}