This repository has been archived by the owner on Aug 5, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
56 lines (56 loc) · 1.82 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
{
"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": "[email protected]",
"role": "Developer"
},
{
"name": "Konrad Abicht",
"homepage": "http://inspirito.de",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"level-2/dice": "dev-v2.0-PHP5.4-5.5",
"saft/saft-arc2": ">=0.8",
"saft/saft-data": ">=0.8",
"saft/saft-easyrdf": ">=0.8",
"saft/saft-querycache": ">=0.8",
"saft/saft-rdf": ">=0.8",
"saft/saft-rest": ">=0.8",
"saft/saft-store-http": ">=0.8",
"saft/saft-store-virtuoso": ">=0.8",
"saft/saft-sparql": ">=0.8",
"saft/saft-store": ">=0.8",
"slim/slim": "2.6.*",
"symfony/http-foundation": "2.*",
"willdurand/negotiation": "2.*",
"zendframework/zend-diactoros": "1.3.*",
"zendframework/zend-cache": "2.5.1"
},
"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.8.*",
"saft/saft-test": ">=0.8"
},
"prefer-stable" : true,
"autoload": {
"psr-4": {
"Saft\\Skeleton\\": [
"*"
]
}
}
}