Skip to content

Instantly share code, notes, and snippets.

@angelxmoreno
Created August 31, 2018 20:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save angelxmoreno/780ed3bc4fda363cbbad0618900dc5fd to your computer and use it in GitHub Desktop.
Save angelxmoreno/780ed3bc4fda363cbbad0618900dc5fd to your computer and use it in GitHub Desktop.
LinkedEntities composer.json
{
"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": "angelxmoreno@gmail.com"
}
],
"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