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",
"cakephp/cakephp": "^3.6"
},
"require-dev": {
"phpunit/phpunit": "^5.4|^6.0",
"squizlabs/php_codesniffer": "^3.3",
"codeclimate/php-test-reporter": "^0.4.4",
"codacy/coverage": "^1.4",
"phpmd/phpmd": "^2.6",
"cakephp/cakephp-codesniffer": "^3.0"
},
"autoload": {
"psr-4": {
"LinkedEntities\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"LinkedEntities\\Test\\": "tests/",
"Cake\\Test\\": "vendor/cakephp/cakephp/tests/"
}
},
"prefer-stable": true,
"scripts": {
"test": "phpunit",
"tests:clover": "phpunit --colors --coverage-clover tmp/coverage/coverage.xml",
"cs:check": "phpcs --standard=ruleset.xml",
"cs:fix": "phpcbf -v --standard=ruleset.xml",
"md:check": "phpmd . text phpmd.xml --exclude /vendor/,/tmp/,/logs/ --suffixes php --colors"
}
}