|
| 1 | +{ |
| 2 | + "name": "cakephp/app", |
| 3 | + "description": "CakePHP skeleton app", |
| 4 | + "homepage": "https://cakephp.org", |
| 5 | + "type": "project", |
| 6 | + "license": "MIT", |
| 7 | + "require": { |
| 8 | + "php": ">=5.6", |
| 9 | + "cakephp/cakephp": "3.5.*", |
| 10 | + "mobiledetect/mobiledetectlib": "2.*", |
| 11 | + "cakephp/migrations": "~1.0", |
| 12 | + "cakephp/plugin-installer": "~1.0", |
| 13 | + "josegonzalez/dotenv": "2.*" |
| 14 | + }, |
| 15 | + "require-dev": { |
| 16 | + "psy/psysh": "@stable", |
| 17 | + "cakephp/debug_kit": "~3.2", |
| 18 | + "cakephp/bake": "~1.1", |
| 19 | + "cakephp/cakephp-codesniffer": "^3.0" |
| 20 | + }, |
| 21 | + "suggest": { |
| 22 | + "markstory/asset_compress": "An asset compression plugin which provides file concatenation and a flexible filter system for preprocessing and minification.", |
| 23 | + "dereuromark/cakephp-ide-helper": "After baking your code, this keeps your annotations in sync with the code evolving from there on for maximum IDE and PHPStan compatibility.", |
| 24 | + "phpunit/phpunit": "Allows automated tests to be run without system-wide install.", |
| 25 | + "cakephp/cakephp-codesniffer": "Allows to check the code against the coding standards used in CakePHP." |
| 26 | + }, |
| 27 | + "autoload": { |
| 28 | + "psr-4": { |
| 29 | + "App\\": "src" |
| 30 | + } |
| 31 | + }, |
| 32 | + "autoload-dev": { |
| 33 | + "psr-4": { |
| 34 | + "App\\Test\\": "tests", |
| 35 | + "Cake\\Test\\": "./vendor/cakephp/cakephp/tests" |
| 36 | + } |
| 37 | + }, |
| 38 | + "scripts": { |
| 39 | + "post-install-cmd": "App\\Console\\Installer::postInstall", |
| 40 | + "post-create-project-cmd": "App\\Console\\Installer::postInstall", |
| 41 | + "post-autoload-dump": "Cake\\Composer\\Installer\\PluginInstaller::postAutoloadDump", |
| 42 | + "check": [ |
| 43 | + "@test", |
| 44 | + "@cs-check" |
| 45 | + ], |
| 46 | + "cs-check": "phpcs --colors -p --standard=vendor/cakephp/cakephp-codesniffer/CakePHP ./src ./tests", |
| 47 | + "cs-fix": "phpcbf --colors --standard=vendor/cakephp/cakephp-codesniffer/CakePHP ./src ./tests", |
| 48 | + "test": "phpunit --colors=always" |
| 49 | + }, |
| 50 | + "prefer-stable": true |
| 51 | +} |
0 commit comments