forked from cakephp/app
-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
60 lines (60 loc) · 1.79 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
{
"name": "coolops/web-app",
"description": "CoolOps web application skeleton (based on CakePHP 3 & MaterializeCSS)",
"homepage": "http://github.com/coolops/web-app",
"type": "project",
"license": "MIT",
"require": {
"php": ">=7.0.0",
"cakephp/cakephp": "~3.2",
"mobiledetect/mobiledetectlib": "2.*",
"cakephp/migrations": "~1.0",
"cakephp/plugin-installer": "*",
"clthck/cakephp-jade": "*",
"clthck/asset-compress-improved": "~3.0",
"admad/cakephp-hybridauth": "~3.0",
"fzaninotto/faker": "*",
"xety/cake3-cookieauth": "1.*",
"dereuromark/cakephp-tinyauth": "1.*",
"davidyell/proffer": "*"
},
"require-dev": {
"psy/psysh": "@stable",
"cakephp/debug_kit": "~3.2",
"cakephp/bake": "~1.1"
},
"suggest": {
"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."
},
"keywords": [
"cakephp",
"cakephp3",
"skeleton",
"materialize",
"materializecss",
"materialize ui",
"material design",
"material theme",
"admin template",
"app",
"coolops"
],
"autoload": {
"psr-4": {
"App\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"App\\Test\\": "tests",
"Cake\\Test\\": "./vendor/cakephp/cakephp/tests"
}
},
"scripts": {
"post-install-cmd": "App\\Console\\Installer::postInstall",
"post-autoload-dump": "Cake\\Composer\\Installer\\PluginInstaller::postAutoloadDump"
},
"minimum-stability": "stable",
"prefer-stable": true
}