forked from easyrdf/easyrdf
-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
67 lines (67 loc) · 1.78 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
57
58
59
60
61
62
63
64
65
66
67
{
"name": "sweetrdf/easyrdf",
"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"],
"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"
},
{
"name": "Konrad Abicht",
"email": "[email protected]",
"homepage": "http://inspirito.de/",
"role": "Maintainer, Developer"
}
],
"replace": {
"easyrdf/easyrdf":"1.1.*"
},
"require": {
"php": "^8.0",
"ext-dom" : "*",
"ext-mbstring": "*",
"ext-pcre": "*",
"ext-xmlreader" : "*",
"lib-libxml" : "*",
"sweetrdf/rdf-helpers": "^2.0"
},
"suggest": {
"ml/json-ld": "^1.0",
"semsol/arc2": "^3"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"ml/json-ld": "^1.0",
"phpunit/phpunit": "^9.5.0|^10.0.0",
"phpstan/phpstan": "^1.0",
"phpstan/phpstan-phpunit": "^1.0",
"semsol/arc2": "^3",
"zendframework/zend-http": "^2",
"laminas/laminas-http": "^2"
},
"autoload": {
"psr-4": {
"EasyRdf\\": "lib"
}
},
"autoload-dev": {
"files": [
"test/TestHelper.php"
],
"psr-4": {
"Test\\": "test/",
"Tests\\": "tests/"
}
}
}