-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
38 lines (36 loc) · 987 Bytes
/
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
{
"name": "axxim/frame",
"description": "A lightning fast framework for PHP",
"keywords": ["framework", "routing", "boilerplate", "frame"],
"homepage": "https://github.com/axxim/frame",
"license": "BSD-3",
"authors": [
{
"name": "Luke Strickland",
"email": "[email protected]",
"homepage": "http://axxim.net/",
"role": "Creator/Developer"
}
],
"require": {
"php": ">=5.3.0",
"klein/klein": "2.0.*"
},
"require-dev": {
"phpunit/phpunit": "3.7.x",
"fabpot/goutte": "1.0.*@dev",
"dflydev/markdown": "1.0.*@dev",
"illuminate/database": "*",
"mustache/mustache": "~2.1",
"twig/twig": "1.*"
},
"suggest": {
"dflydev/markdown": "Enable Markdown Controllers",
"illuminate/database": "Add Model/Database support"
},
"autoload": {
"psr-0": {
"Frame": "src/"
}
}
}