forked from noodlehaus/dispatch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
83 lines (83 loc) · 1.98 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "dispatch/dispatch",
"type": "library",
"description": "a microframework/front-controller",
"keywords": ["framework", "router", "microframework", "micro", "microphp"],
"homepage": "http://noodlehaus.github.io/dispatch/",
"license": "MIT",
"authors": [
{
"name": "Jesus A. Domingo",
"role": "Developer",
"homepage": "http://noodlehaus.github.io/"
},
{
"name": "Kafene",
"role": "Contributor",
"homepage": "https://github.com/kafene"
},
{
"name": "Martin Angelov",
"role": "Contributor",
"homepage": "https://github.com/martinaglv"
},
{
"name": "Lars",
"role": "Developer",
"homepage": "https://github.com/larsbo"
},
{
"name": "4d47",
"role": "Contributor",
"homepage": "https://github.com/4d47"
},
{
"name": "Bastian Widmer",
"role": "Contributor",
"homepage": "https://github.com/dasrecht"
},
{
"name": "Lloyd Zhou",
"role": "Contributor",
"homepage": "https://github.com/lloydzhou"
},
{
"name": "Darkalemanbr",
"role": "Contributor",
"homepage": "https://github.com/darkalemanbr"
},
{
"name": "Amin By",
"role": "Contributor",
"homepage": "https://github.com/xielingwang"
},
{
"name": "Ross Masters",
"role": "Contributor",
"homepage": "https://github.com/rmasters"
},
{
"name": "Tom Streller",
"role": "Contributor",
"homepage": "https://github.com/scan"
}
],
"require": {
"php": ">= 5.3.0"
},
"suggest": {
"dispatch/dispatch-extras": "Encryption, caching and more, for dispatch",
"dispatch/dispatch-mustache": "mustache template support within dispatch",
"giggleboxstudios/dispatch-handlebars": "handlebars template support within dispatch"
},
"autoload": {
"files": [
"src/dispatch.php"
]
},
"extra": {
"branch-alias": {
"dev-master": "4.x-dev"
}
}
}