-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathcomposer.json
76 lines (76 loc) · 2.48 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
{
"name": "xety/xeta",
"description": "A resource to help people starting with Cake3",
"keywords": ["CakePHP 3", "Cake3", "website", "blog", "administration"],
"homepage": "https://github.com/XetaIO/Xeta",
"type": "project",
"license": "MIT",
"support": {
"source":"https://github.com/XetaIO/Xeta",
"issues":"https://github.com/XetaIO/Xeta/issues"
},
"authors": [
{
"name": "Xety",
"email": "zoro.fmt@gmail.com",
"homepage": "https://github.com/Xety"
}
],
"require": {
"php": ">=5.6.0",
"cakephp/cakephp": "~3.0",
"cakephp/acl": "dev-master",
"cakephp/migrations": "~1.0",
"cakephp/plugin-installer": "~1.0",
"mobiledetect/mobiledetectlib": "2.*",
"ezyang/htmlpurifier": "dev-master",
"widop/google-analytics": "dev-master",
"mexitek/phpcolors": "dev-master",
"xety/cake3-upload": "1.*",
"xety/cake3-cookieauth": "1.*",
"cake17/cakephp-recaptcha": "dev-master",
"filp/whoops": "~2.0",
"robthree/twofactorauth": "1.*",
"browscap/browscap-php": "3.*"
},
"require-dev": {
"psy/psysh": "@stable",
"d11wtq/boris": "1.0.*",
"phpunit/phpunit": "*",
"cakephp/cakephp-codesniffer": "dev-master",
"cakephp/debug_kit": "~3.0",
"cakephp/bake": "~1.0",
"phpro/grumphp": "^0.11.4"
},
"autoload": {
"psr-4": {
"App\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"App\\Test\\": "tests",
"Cake\\Test\\": "./vendor/cakephp/cakephp/tests"
}
},
"scripts": {
"deployment": [
"bin/cake deployer clear_cache",
"bin/cake migrations migrate"
],
"installation": [
"bin/cake migrations migrate",
"bin/cake migrations seed"
],
"post-install-cmd": "App\\Console\\Installer::postInstall",
"post-create-project-cmd": "App\\Console\\Installer::postInstall",
"post-autoload-dump": "Cake\\Composer\\Installer\\PluginInstaller::postAutoloadDump",
"check": [
"@cs-check",
"@test"
],
"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"
}
}