-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
103 lines (103 loc) · 3.52 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "cakephp/app",
"description": "CakePHP skeleton app",
"homepage": "https://cakephp.org",
"type": "project",
"license": "MIT",
"repositories": [
{
"type": "vcs",
"url": "https://github.com/funayaki/acl-manager"
},
{
"type": "vcs",
"url": "https://github.com/funayaki/assets"
},
{
"type": "vcs",
"url": "https://github.com/funayaki/bootstrap-ui"
},
{
"type": "vcs",
"url": "https://github.com/funayaki/cakephp-adminlte-theme"
},
{
"type": "vcs",
"url": "https://github.com/funayaki/cake-adminlte"
},
{
"type": "vcs",
"url": "https://github.com/funayaki/settings"
},
{
"type": "vcs",
"url": "https://github.com/funayaki/taxonomy"
},
{
"type": "vcs",
"url": "https://github.com/funayaki/users"
}
],
"require": {
"php": ">=5.6",
"admad/cakephp-sequence": "^2.1",
"cakephp/acl": "^0.2.6",
"cakephp/cakephp": "3.5.*",
"cakephp/migrations": "^1.0",
"cakephp/plugin-installer": "^1.0",
"friendsofcake/crud": "^5.4",
"friendsofcake/search": "^4.3",
"funayaki/acl-manager": "dev-master",
"funayaki/adminlte": "dev-feature",
"funayaki/assets": "dev-master",
"funayaki/bootstrap-ui": "dev-adminlte",
"funayaki/cakephp-adminlte-theme": "dev-funayaki",
"funayaki/settings": "dev-master",
"funayaki/taxonomy": "dev-master",
"funayaki/users": "dev-master",
"josegonzalez/dotenv": "2.*",
"mobiledetect/mobiledetectlib": "2.*",
"muffin/footprint": "^1.2",
"oldskool/cakephp-js": "dev-master"
},
"require-dev": {
"cakephp/bake": "^1.1",
"cakephp/cakephp-codesniffer": "^3.0",
"cakephp/debug_kit": "^3.2",
"phpunit/phpunit": "^5.7|^6.0",
"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 compatibility.",
"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/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Test\\": "tests/",
"Cake\\Test\\": "vendor/cakephp/cakephp/tests/"
}
},
"scripts": {
"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 --standard=vendor/cakephp/cakephp-codesniffer/CakePHP ./src ./tests",
"cs-fix": "phpcbf --colors --standard=vendor/cakephp/cakephp-codesniffer/CakePHP ./src ./tests",
"test": "phpunit --colors=always"
},
"prefer-stable": true,
"config": {
"sort-packages": true
}
}