-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
50 lines (50 loc) · 1.53 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
{
"name": "xety/xeta",
"description": "A resource to help people starting with Cake3",
"keywords": ["CakePHP 3","Cake3"],
"homepage": "https://github.com/Xety/Xeta",
"type": "project",
"license": "MIT",
"require": {
"php": ">=5.4.16",
"cakephp/cakephp": "~3.0",
"cakephp/acl": "dev-master",
"cakephp/migrations": "~1.0",
"cakephp/plugin-installer": "*",
"mobiledetect/mobiledetectlib": "2.*",
"ezyang/htmlpurifier": "dev-master",
"widop/google-analytics": "dev-master",
"mexitek/phpcolors": "dev-master",
"xety/cake3-upload": "1.*",
"xety/cake3-sluggable": "1.*",
"xety/cake3-cookieauth": "1.*",
"cake17/cakephp-recaptcha": "dev-master",
"friendsofcake/cakephp-csvview": "~3.0",
"intervention/image": "dev-master"
},
"require-dev": {
"psy/psysh": "@stable",
"d11wtq/boris": "1.0.*",
"phpunit/phpunit": "*",
"gourmet/whoops": "*",
"cakephp/cakephp-codesniffer": "dev-master",
"cakephp/debug_kit": "~3.0",
"cakephp/bake": "~1.0"
},
"autoload": {
"psr-4": {
"App\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"App\\Test\\": "tests"
}
},
"scripts": {
"post-install-cmd": "App\\Console\\Installer::postInstall",
"post-autoload-dump": "Cake\\Composer\\Installer\\PluginInstaller::postAutoloadDump"
},
"minimum-stability" : "dev",
"prefer-stable": true
}