forked from AKSW/transform-bvl-pages-to-csv-file
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
45 lines (45 loc) · 1.41 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
{
"name": "saft/saft-skeleton",
"description": "This collection of classes helps you to accelerate while developing Semantic Web applications using the Saft framework.",
"license": "GPL-3.0",
"authors": [
{
"name": "Natanael Arndt",
"homepage": "http://aksw.org/NatanaelArndt",
"email": "arndtn@gmail.com",
"role": "Developer"
},
{
"name": "Konrad Abicht",
"homepage": "http://inspirito.de",
"email": "hi@inspirito.de",
"role": "Developer"
}
],
"require": {
"level-2/dice": "dev-v2.0-PHP5.4-5.5",
"saft/saft": ">=0.1.1",
"slim/slim": "3.2.*",
"zendframework/zend-diactoros": "1.3.*",
"zendframework/zend-cache": "2.6.*"
},
"suggest": {
"ext-apc": "Enables usage of APC cache (until PHP 5.5).",
"ext-apcu": "Enables usage of APCu cache (since PHP 5.5).",
"ext-memcached": "Enables usage of MemcacheD as cache backend.",
"ext-mongodb": "Enables usage of MongoDB as cache backend.",
"ext-redis": "Enables usage of Redis as cache backend."
},
"require-dev": {
"phpunit/phpunit": "4.5.*"
},
"minimum-stability": "dev",
"prefer-stable" : true,
"autoload": {
"psr-4": {
"Saft\\Skeleton\\": [
"src/Saft/Skeleton/"
]
}
}
}