-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
41 lines (41 loc) · 1009 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
{
"name": "skautis/nette",
"type": "library",
"description": "Nette extension for Skautis library",
"keywords": ["skautis", "api", "nette"],
"homepage": "https://github.com/skaut/SkautisNette",
"license": ["BSD-3-Clause"],
"authors": [
{
"name": "František Hána",
"homepage": "http://sinacek.cz"
}
],
"support": {
"wiki": "http://is.skaut.cz/napoveda/",
"source": "https://github.com/skaut/SkautisNette"
},
"require": {
"php": ">=5.6",
"skautis/skautis": "^2.0",
"nette/di": "^2.4.6 || ^3.0.1",
"nette/http": "^2.4.7 || ^3.0",
"nette/utils": "^2.5.4 || ^3.0"
},
"require-dev": {
"nette/tester": "^2.3.1",
"tracy/tracy": "^2.5",
"nette/caching": "^2.5 || ^3.0",
"nette/finder": "^2.4",
"nette/bootstrap": "^2.4 || ^3.0"
},
"suggest": {
"tracy/tracy": "to enable skautis panel for Tracy debug bar.",
"nette/caching": "to use Nette caching backend in CacheDecorator."
},
"autoload": {
"psr-4": {
"Skautis\\Nette\\": "src/"
}
}
}