|
| 1 | +{ |
| 2 | + "name": "open-code-modeling/php-code-generator-transformator", |
| 3 | + "description": "Open Code Modeling PHP Code Generator Transformator", |
| 4 | + "license": "MIT", |
| 5 | + "type": "library", |
| 6 | + "authors": [ |
| 7 | + { |
| 8 | + "name": "Sandro Keil", |
| 9 | + "homepage": "https://sandro-keil.de", |
| 10 | + "role": "maintainer" |
| 11 | + } |
| 12 | + ], |
| 13 | + "support": { |
| 14 | + "issues": "https://github.com/open-code-modeling/php-code-generator-transformator/issues", |
| 15 | + "source": "https://github.com/open-code-modeling/php-code-generator-transformator" |
| 16 | + }, |
| 17 | + "autoload": { |
| 18 | + "psr-4": { |
| 19 | + "OpenCodeModeling\\CodeGenerator\\Transformator\\": "src/" |
| 20 | + } |
| 21 | + }, |
| 22 | + "autoload-dev": { |
| 23 | + "psr-4": { |
| 24 | + "OpenCodeModelingTest\\CodeGenerator\\Transformator\\": "tests/" |
| 25 | + } |
| 26 | + }, |
| 27 | + "require": { |
| 28 | + "ext-dom": "*" |
| 29 | + }, |
| 30 | + "require-dev": { |
| 31 | + "open-code-modeling/php-code-generator": "*", |
| 32 | + "phpspec/prophecy-phpunit": "^2.0", |
| 33 | + "phpstan/phpstan": "^0.12.33", |
| 34 | + "phpstan/phpstan-strict-rules": "^0.12.4", |
| 35 | + "phpunit/phpunit": "^9.2.6", |
| 36 | + "prooph/php-cs-fixer-config": "^0.3", |
| 37 | + "roave/security-advisories": "dev-master", |
| 38 | + "squizlabs/php_codesniffer": "^3.4" |
| 39 | + }, |
| 40 | + "suggest": { |
| 41 | + "open-code-modeling/php-code-generator": "To use the static factory methods for Code Generator workflow configuration" |
| 42 | + }, |
| 43 | + "minimum-stability": "dev", |
| 44 | + "prefer-stable": true, |
| 45 | + "scripts": { |
| 46 | + "check": [ |
| 47 | + "@cs", |
| 48 | + "@docheader", |
| 49 | + "@test" |
| 50 | + ], |
| 51 | + "docheader": "vendor/bin/docheader check src/ tests/", |
| 52 | + "cs": "php-cs-fixer fix src -v --diff --dry-run", |
| 53 | + "cs-fix": "php-cs-fixer fix src -v --diff", |
| 54 | + "test": "vendor/bin/phpunit", |
| 55 | + "analyse": "php vendor/bin/phpstan.phar analyse --no-interaction" |
| 56 | + }, |
| 57 | + "config": { |
| 58 | + "sort-packages": true, |
| 59 | + "platform": { |
| 60 | + } |
| 61 | + }, |
| 62 | + "archive": { |
| 63 | + "exclude": [ |
| 64 | + ".coveralls.yml", |
| 65 | + ".travis.yml", |
| 66 | + "build", |
| 67 | + "phpunit.xml*", |
| 68 | + "tests" |
| 69 | + ] |
| 70 | + } |
| 71 | +} |
0 commit comments