forked from easyrdf/easyrdf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
50 lines (50 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
46
47
48
49
50
{
"name": "easyrdf/easyrdf",
"version": "0.10.0-alpha.1",
"description": "EasyRdf is a PHP library designed to make it easy to consume and produce RDF.",
"type": "library",
"keywords": ["RDF", "Semantic Web", "Linked Data", "Turtle", "RDFa", "SPARQL"],
"homepage": "http://www.easyrdf.org/",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Nicholas Humfrey",
"email": "[email protected]",
"homepage": "http://www.aelius.com/njh/",
"role": "Developer"
},
{
"name": "Alexey Zakhlestin",
"email": "[email protected]",
"homepage": "http://indeyets.ru/",
"role": "Developer"
}
],
"support": {
"forum": "http://groups.google.com/group/easyrdf/",
"issues": "http://github.com/njh/easyrdf/issues",
"irc": "irc://chat.freenode.net/easyrdf"
},
"require": {
"php": ">=5.3.0",
"ext-mbstring": "*",
"ext-pcre": "*"
},
"suggest": {
"ml/json-ld": "~1.0",
"semsol/arc2": "~2.2"
},
"require-dev": {
"ml/json-ld": "~1.0",
"phpunit/PHPUnit": "~4.1",
"sami/sami": "~2.0",
"semsol/arc2": "~2.2",
"squizlabs/php_codesniffer": "~1.4.3",
"zendframework/zend-http": "~2.3"
},
"autoload": {
"psr-4": {
"EasyRdf\\": "lib"
}
}
}