-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathcomposer.json
81 lines (81 loc) · 3.07 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": "cakephp/cakepackages",
"description": "Self-contained application that automatically tracks cakephp developer's open source code repositories",
"homepage": "https://github.com/cakephp/cakepackages",
"type": "project",
"license": "MIT",
"require": {
"php": ">=5.6",
"ext-apcu": "*",
"ext-intl": "*",
"ext-mbstring": "*",
"ext-pcntl": "*",
"ext-pdo_sqlite": "*",
"ext-pdo_mysql": "*",
"ext-pdo_pgsql": "*",
"ext-redis": "*",
"cakephp/cakephp": "3.10.3",
"mobiledetect/mobiledetectlib": "2.*",
"cakephp/migrations": "^2.0.0",
"cakephp/plugin-installer": "*",
"josegonzalez/dotenv": "3.*",
"friendsofcake/crud": "~5.0",
"friendsofcake/crud-view": "0.14.0",
"friendsofcake/bootstrap-ui": "1.4.1",
"friendsofcake/search": "~5.0",
"markstory/asset_compress": "3.*",
"josegonzalez/cakephp-upload": "4.0.1",
"josegonzalez/cakephp-queuesadilla": "0.6.0",
"josegonzalez/queuesadilla": "*",
"josegonzalez/php-error-handlers": "0.*",
"muffin/tokenize": "^1.0",
"friendsofcake/crud-users": "^0.6.0",
"admad/cakephp-social-auth": "^1.0@dev",
"friendsofcake/cakephp-csvview": "~3.0",
"cakephp/debug_kit": "3.21.0",
"cakephp/bake": "1.12.0",
"wyrihaximus/twig-view": "4.3.7",
"robmorgan/phinx": "^0.10.0"
},
"require-dev": {
"psy/psysh": "@stable",
"cakephp/cakephp-codesniffer": "3.3.0"
},
"suggest": {
"markstory/asset_compress": "An asset compression plugin which provides file concatenation and a flexible filter system for preprocessing and minification.",
"phpunit/phpunit": "Allows automated tests to be run without system-wide install.",
"cakephp/cakephp-codesniffer": "Allows to check the code against the coding standards used in CakePHP."
},
"autoload": {
"psr-4": {
"App\\": "src",
"Users\\": "./plugins/Users/src"
}
},
"autoload-dev": {
"psr-4": {
"App\\Test\\": "tests",
"Cake\\Test\\": "./vendor/cakephp/cakephp/tests",
"Users\\Test\\": "./plugins/Users/tests"
}
},
"scripts": {
"compile": [
"bin/cake migrations migrate",
"bin/cake migrations migrate -p Josegonzalez/CakeQueuesadilla",
"bin/cake asset_compress build"
],
"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": "vendor/bin/phpcs --colors -p --standard='phpcs.xml.dist' ./src ./tests",
"cs-fix": "vendor/bin/phpcbf --colors --standard='phpcs.xml.dist' ./src ./tests",
"test": "vendor/bin/phpunit --colors=always"
},
"minimum-stability": "dev",
"prefer-stable": true
}