updated composer files
[feisty_meow.git] / production / example_apps / shared_calendar / 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": "~1.0",
12         "cakephp/plugin-installer": "~1.0",
13         "google/apiclient": "^2.0"
14     },
15     "require-dev": {
16         "psy/psysh": "@stable",
17         "cakephp/debug_kit": "~3.0",
18         "cakephp/bake": "~1.1"
19     },
20     "suggest": {
21         "markstory/asset_compress": "An asset compression plugin which provides file concatenation and a flexible filter system for preprocessing and minification.",
22         "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.",
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         }
30     },
31     "autoload-dev": {
32         "psr-4": {
33             "App\\Test\\": "tests",
34             "Cake\\Test\\": "./vendor/cakephp/cakephp/tests"
35         }
36     },
37     "scripts": {
38         "post-install-cmd": "App\\Console\\Installer::postInstall",
39         "post-create-project-cmd": "App\\Console\\Installer::postInstall",
40         "check": [
41             "@test",
42             "@cs-check"
43         ],
44         "cs-check": "phpcs --colors -p --standard=vendor/cakephp/cakephp-codesniffer/CakePHP ./src ./tests",
45         "cs-fix": "phpcbf --colors --standard=vendor/cakephp/cakephp-codesniffer/CakePHP ./src ./tests",
46         "test": "phpunit --colors=always"
47     },
48     "prefer-stable": true,
49     "config": {
50         "allow-plugins": {
51             "cakephp/plugin-installer": true
52         }
53     }
54 }