-
Notifications
You must be signed in to change notification settings - Fork 173
/
composer.json
59 lines (59 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
51
52
53
54
55
56
57
58
59
{
"name": "torophp/torophp",
"type": "library",
"description": "Toro is a PHP router for developing RESTful web applications and APIs.",
"keywords": [
"framework",
"php",
"router"
],
"homepage": "http://github.com/anandkunal/ToroPHP",
"license": "MIT",
"authors": [
{
"name": "Kunal Anand",
"email": "[email protected]",
"homepage": "http://kunalanand.com/",
"role": "Developer"
},
{
"name": "Danillo César de O. Melo",
"email": "[email protected]",
"homepage": "http://www.danillocesar.com.br/",
"role": "Contributor"
},
{
"name": "Martin Bean",
"email": "[email protected]",
"homepage": "http://www.martinbean.co.uk",
"role": "Developer"
},
{
"name": "Robbie Coleman",
"homepage": "http://robbie.robnrob.com",
"role": "Contributor"
},
{
"name": "John Kurkowski",
"role": "Contributor"
},
{
"name": "Berker Peksag",
"homepage": "http://berkerpeksag.com",
"role": "Developer"
},
{
"name": "Jason Mooberry",
"homepage": "http://jasonmooberry.com/",
"role": "Developer"
}
],
"require": {
"php": ">=5.3.0"
},
"autoload": {
"files": [
"src/Toro.php"
]
}
}