forked from cakephp/cakephp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
82 lines (82 loc) · 2.82 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
{
"name": "cakephp/cakephp",
"description": "The CakePHP framework",
"type": "library",
"keywords": ["framework"],
"homepage": "http://cakephp.org",
"license": "MIT",
"authors": [
{
"name": "CakePHP Community",
"homepage": "https://github.com/cakephp/cakephp/graphs/contributors"
}
],
"support": {
"issues": "https://github.com/cakephp/cakephp/issues",
"forum": "http://stackoverflow.com/tags/cakephp",
"irc": "irc://irc.freenode.org/cakephp",
"source": "https://github.com/cakephp/cakephp"
},
"require": {
"php": ">=5.5.9",
"ext-intl": "*",
"ext-mbstring": "*",
"cakephp/chronos": "~1.0",
"aura/intl": "1.1.*",
"psr/log": "1.0",
"zendframework/zend-diactoros": "~1.0"
},
"suggest": {
"ext-openssl": "To use Security::encrypt() or have secure CSRF token generation."
},
"require-dev": {
"phpunit/phpunit": "*",
"cakephp/cakephp-codesniffer": "~2.1"
},
"autoload": {
"psr-4": {
"Cake\\": "src"
},
"files": [
"src/Core/functions.php",
"src/Collection/functions.php",
"src/I18n/functions.php",
"src/Utility/bootstrap.php"
]
},
"autoload-dev": {
"psr-4": {
"Cake\\Test\\": "tests",
"TestApp\\": "tests/test_app/TestApp",
"TestPlugin\\": "tests/test_app/Plugin/TestPlugin/src",
"TestPlugin\\Test\\": "tests/test_app/Plugin/TestPlugin/tests",
"TestPluginTwo\\": "tests/test_app/Plugin/TestPluginTwo/src",
"Company\\TestPluginThree\\": "tests/test_app/Plugin/Company/TestPluginThree/src",
"Company\\TestPluginThree\\Test\\": "tests/test_app/Plugin/Company/TestPluginThree/tests",
"PluginJs\\": "tests/test_app/Plugin/PluginJs/src"
}
},
"replace": {
"cakephp/cache": "self.version",
"cakephp/collection": "self.version",
"cakephp/core": "self.version",
"cakephp/datasource": "self.version",
"cakephp/database": "self.version",
"cakephp/event": "self.version",
"cakephp/filesystem": "self.version",
"cakephp/i18n": "self.version",
"cakephp/log": "self.version",
"cakephp/orm": "self.version",
"cakephp/utility": "self.version",
"cakephp/validation": "self.version"
},
"scripts": {
"check": [
"@cs-check",
"@test"
],
"cs-check": "vendor/bin/phpcs --colors -p --standard=vendor/cakephp/cakephp-codesniffer/CakePHP ./src ./tests",
"cs-fix": "vendor/bin/phpcbf --colors --standard=vendor/cakephp/cakephp-codesniffer/CakePHP ./src ./tests",
"test": "vendor/bin/phpunit --colors=always"
}
}