Created
August 31, 2018 20:36
-
-
Save angelxmoreno/780ed3bc4fda363cbbad0618900dc5fd to your computer and use it in GitHub Desktop.
LinkedEntities composer.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "angelxmoreno/cakephp-linked-entities", | |
"description": "LinkedEntities plugin for CakePHP 3.x", | |
"homepage": "https://github.com/angelxmoreno/cakephp-linked-entities", | |
"support": { | |
"issues": "https://github.com/angelxmoreno/cakephp-linked-entities/issues" | |
}, | |
"type": "cakephp-plugin", | |
"extra": { | |
"installer-name": "LinkedEntities" | |
}, | |
"license": "MIT", | |
"keywords": [ | |
"cakephp-plugin", | |
"cakephp3", | |
"polymorphism" | |
], | |
"authors": [ | |
{ | |
"name": "Angel S. Moreno", | |
"email": "[email protected]" | |
} | |
], | |
"require": { | |
"php": ">=5.6", | |
"ext-json": "^1.5" | |
}, | |
"require-dev": { | |
"phpunit/phpunit": "^5.7.14|^6.0", | |
"cakephp/cakephp": "^3.5", | |
"squizlabs/php_codesniffer": "^3.3" | |
}, | |
"autoload": { | |
"psr-4": { | |
"LinkedEntities\\": "src/" | |
} | |
}, | |
"autoload-dev": { | |
"psr-4": { | |
"LinkedEntities\\Test\\": "tests/", | |
"Cake\\Test\\": "vendor/cakephp/cakephp/tests/" | |
} | |
}, | |
"prefer-stable": true, | |
"config": { | |
"sort-packages": true, | |
"bin-dir": "bin" | |
}, | |
"scripts": { | |
"test": "phpunit", | |
"test-coverage": "phpunit --log-junit tmp/coverage/unitreport.xml --coverage-html tmp/coverage --coverage-clover tmp/coverage/coverage.xml", | |
"cs-check": "phpcs -p --standard=vendor/fig-r/psr2r-sniffer/PSR2R/ruleset.xml --ignore=/vendor/,/tmp/,/logs/ --extensions=php ./", | |
"cs-fix": "phpcbf -v --standard=vendor/fig-r/psr2r-sniffer/PSR2R/ruleset.xml --ignore=/vendor/,/tmp/,/logs/ --extensions=php ./" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment