OSDN Git Service

camephp
[umumu/umumu.git] / composer.json
1 {
2     "name": "cakephp/app",
3     "description": "CakePHP skeleton app",
4     "homepage": "http://cakephp.org",
5     "type": "project",
6     "license": "MIT",
7     "require": {
8         "php": ">=5.4.16",
9         "cakephp/cakephp": "~3.0",
10         "mobiledetect/mobiledetectlib": "2.*",
11         "cakephp/migrations": "~1.0",
12         "cakephp/plugin-installer": "*"
13     },
14     "require-dev": {
15         "psy/psysh": "@stable",
16         "cakephp/debug_kit": "~3.0",
17         "cakephp/bake": "~1.0"
18     },
19     "suggest": {
20         "phpunit/phpunit": "Allows automated tests to be run without system-wide install.",
21         "cakephp/cakephp-codesniffer": "Allows to check the code against the coding standards used in CakePHP."
22     },
23     "autoload": {
24         "psr-4": {
25             "App\\": "src"
26         }
27     },
28     "autoload-dev": {
29         "psr-4": {
30             "App\\Test\\": "tests",
31             "Cake\\Test\\": "./vendor/cakephp/cakephp/tests"
32         }
33     },
34     "scripts": {
35         "post-install-cmd": "App\\Console\\Installer::postInstall",
36         "post-autoload-dump": "Cake\\Composer\\Installer\\PluginInstaller::postAutoloadDump"
37     },
38     "minimum-stability": "dev",
39     "prefer-stable": true
40 }