updated cakephp versions
[feisty_meow.git] / production / example_apps / zippy_maps / 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.6",
9         "cakephp/cakephp": "3.8.*",
10         "mobiledetect/mobiledetectlib": "2.*",
11         "cakephp/migrations": "@stable",
12         "cakephp/plugin-installer": "*",
13         "dereuromark/cakephp-geo": "^1.1",
14         "siteavenger/avmaps" : "dev-master"
15     },
16     "require-dev": {
17         "psy/psysh": "@stable",
18         "cakephp/debug_kit": "~3.0",
19         "cakephp/bake": "~1.1"
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         "phpunit/phpunit": "Allows automated tests to be run without system-wide install.",
24         "cakephp/cakephp-codesniffer": "Allows to check the code against the coding standards used in CakePHP."
25     },
26     "autoload": {
27         "psr-4": {
28             "App\\": "src",
29             "Avmaps\\": "./plugins/Avmaps/src"
30         }
31     },
32     "autoload-dev": {
33         "psr-4": {
34             "App\\Test\\": "tests",
35             "Cake\\Test\\": "./vendor/cakephp/cakephp/tests",
36             "Avmaps\\Test\\": "./plugins/Avmaps/tests"
37         }
38     },
39     "scripts": {
40         "post-install-cmd": "App\\Console\\Installer::postInstall",
41         "post-create-project-cmd": "App\\Console\\Installer::postInstall",
42         "post-autoload-dump": "Cake\\Composer\\Installer\\PluginInstaller::postAutoloadDump",
43         "check": [
44             "@test",
45             "@cs-check"
46         ],
47         "cs-check": "phpcs --colors -p --standard=vendor/cakephp/cakephp-codesniffer/CakePHP ./src ./tests",
48         "cs-fix": "phpcbf --colors --standard=vendor/cakephp/cakephp-codesniffer/CakePHP ./src ./tests",
49         "test": "phpunit --colors=always"
50     },
51     "prefer-stable": true
52 }