-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
43 lines (43 loc) · 1.15 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
{
"name": "samurai/activegateway",
"description": "PHP O/R Mapper.",
"version": "2.0.0-dev",
"type": "library",
"keywords":["ORM", "Maple"],
"license": "MIT",
"authors": [
{
"name": "KIUCHI Satoshinosuke",
"email": "[email protected]",
"homepage": "https://github.com/8823-scholar",
"role": "Developer"
}
],
"require": {
"spyc/spyc": "dev-master"
},
"repositories": [
{
"type": "package",
"package": {
"name": "spyc/spyc",
"version": "dev-master",
"dist": {
"url": "https://github.com/mustangostang/spyc/archive/master.zip",
"type": "zip"
},
"source": {
"url": "https://github.com/mustangostang/spyc.git",
"type": "git",
"reference": "master"
},
"autoload": {
"classmap": ["Spyc.php"]
}
}
}
],
"autoload": {
"classmap": ["src"]
}
}