forked from angelxmoreno/builtwithcake
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
44 lines (44 loc) · 1.06 KB
/
composer.json
File metadata and controls
44 lines (44 loc) · 1.06 KB
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
{
"name": "friendsofcake/app-template",
"description": "An empty CakePHP 2.4 application",
"type": "project",
"keywords" : [],
"homepage" : "http://cakephp.org",
"license" : "MIT",
"require" : {
"php" : ">=5.4",
"composer/installers" : "~1.0",
"cakephp/cakephp" : "2.4.2",
"friendsofcake/crud" : "3.*",
"cakedc/migrations": "2.2.3",
"cakedc/users": "2.0",
"cakedc/search": "2.2.1",
"cakedc/utils": "1.4.2",
"josegonzalez/cakephp-upload": "dev-master"
},
"require-dev": {
"cakephp/debug_kit" : "2.2.*"
},
"minimum-stability": "dev",
"repositories" : [
{
"type": "package",
"package": {
"name" : "cakephp/cakephp",
"version" : "2.4.2",
"dist" : {
"type" : "zip",
"url" : "https://github.com/cakephp/cakephp/archive/2.4.2.zip"
},
"source" : {
"type" : "git",
"url" : "git://github.com/cakephp/cakephp.git",
"reference" : "2.4.2"
}
}
}
],
"config": {
"preferred-install": "source"
}
}