-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
50 lines (42 loc) · 929 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
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "flame/framework",
"type": "library",
"description": "Flame is simple and smart FRAMEWORK based on Nette",
"keywords": ["framework", "nette", "simple", "flame", "jsifalda", "tools"],
"homepage": "https://github.com/flame-org/framework",
"license": "BSD-2-Clause-FreeBSD",
"minimum-stability": "dev",
"authors": [
{
"name": "Jiří Šifalda",
"homepage": "http://jsifalda.name/"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/flame-org/framework/issues"
},
"require": {
"php": ">=5.3.2",
"nette/nette": ">=2.1.0"
},
"suggest": {
"flame/modules": "*"
},
"require-dev": {
"nette/tester": "0.9.3",
"flame/tester": "@dev",
"janmarek/mockista": "@dev"
},
"config": {
"vendor-dir": "libs"
},
"autoload": {
"psr-0": {
"Flame": ""
},
"classmap": [
"Tools"
]
}
}