-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomposer.json
81 lines (81 loc) · 3.13 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "josegonzalez/app",
"description": "CakePHP skeleton app",
"homepage": "https://github.com/josegonzalez/app",
"type": "project",
"license": "MIT",
"require": {
"php": ">=7.0",
"ext-apcu": "*",
"ext-intl": "*",
"ext-mbstring": "*",
"ext-pcntl": "*",
"ext-pdo_mysql": "*",
"ext-pdo_pgsql": "*",
"ext-pdo_sqlite": "*",
"ext-redis": "*",
"cakephp/cakephp": "3.9.*",
"cakephp/migrations": "^2.0.0",
"cakephp/plugin-installer": "^1.0",
"friendsofcake/bootstrap-ui": "1.*",
"friendsofcake/crud": "^5.0",
"friendsofcake/crud-view": "0.*",
"friendsofcake/search": "5.*",
"josegonzalez/cakephp-queuesadilla": "0.6.*",
"josegonzalez/cakephp-upload": "4.*",
"josegonzalez/cakephp-users": "0.*",
"josegonzalez/dotenv": "3.*",
"josegonzalez/php-error-handlers": "0.*",
"josegonzalez/queuesadilla": "*",
"markstory/asset_compress": "3.*",
"mobiledetect/mobiledetectlib": "2.*"
},
"require-dev": {
"cakephp/bake": "^1.9.0",
"cakephp/cakephp-codesniffer": "^3.0",
"cakephp/debug_kit": "^3.17.0",
"josegonzalez/dotenv": "3.*",
"phpunit/phpunit": "^5|^6",
"psy/psysh": "@stable"
},
"suggest": {
"markstory/asset_compress": "An asset compression plugin which provides file concatenation and a flexible filter system for preprocessing and minification.",
"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/Psalm compatibility."
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Test\\": "tests/",
"Cake\\Test\\": "vendor/cakephp/cakephp/tests/"
}
},
"scripts": {
"compile": [
"bin/cake migrations migrate",
"bin/cake migrations migrate -p Josegonzalez/CakeQueuesadilla",
"bin/cake migrations migrate -p Muffin/Tokenize",
"bin/cake migrations migrate -p ADmad/SocialAuth"
],
"post-install-cmd": "App\\Console\\Installer::postInstall",
"post-create-project-cmd": "App\\Console\\Installer::postInstall",
"post-autoload-dump": "Cake\\Composer\\Installer\\PluginInstaller::postAutoloadDump",
"check": [
"@test",
"@cs-check"
],
"cs-check": "phpcs --colors -p --extensions=php --standard=vendor/cakephp/cakephp-codesniffer/CakePHP src/ tests/ config/ webroot/",
"cs-fix": "phpcbf --colors -p --extensions=php --standard=vendor/cakephp/cakephp-codesniffer/CakePHP src/ tests/ config/ webroot/",
"stan": "phpstan analyse -l 5 src/",
"stan-setup": "cp composer.json composer.backup && composer require --dev phpstan/phpstan-shim:^0.11 && mv composer.backup composer.json",
"test": "phpunit --colors=always"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true
}
}