-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
53 lines (50 loc) · 1.32 KB
/
composer.json
File metadata and controls
53 lines (50 loc) · 1.32 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
45
46
47
48
49
50
51
52
53
{
"repositories" : [
{
"type" : "package",
"package" : {
"name" : "pancakephp/griddle",
"version" : "0.0.1",
"source" : {
"type" : "git",
"url" : "git@github.com:pancakephp/griddle.git",
"reference" : "master"
},
"autoload" : {
"psr-0" : {
"Griddle" : "src/"
}
}
}
},
{
"type" : "package",
"package" : {
"name" : "pancakephp/auth",
"version" : "0.0.1",
"source" : {
"type" : "git",
"url" : "git@github.com:pancakephp/auth.git",
"reference" : "master"
},
"autoload" : {
"psr-0" : {
"Griddle" : "src/"
}
}
}
}
],
"require" : {
"pancakephp/griddle" : "0.0.*",
"pancakephp/auth" : "0.0.*"
},
"autoload": {
"classmap": [
"app/controllers",
"app/models",
"app/tests/TestCase.php"
]
},
"minimum-stability": "dev"
}