-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
47 lines (47 loc) · 1.23 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
{
"name": "sweetrdf/quick-rdf-io",
"type": "library",
"description": "Collection of parser and serializers compatible with sweetrdf/rdfInterface",
"keywords": [],
"homepage": "https://github.com/sweetrdf/quickRdfIo",
"license": "MIT",
"authors": [
{
"name": "Mateusz Żółtak",
"email": "zozlak@zozlak.org",
"role": "Developer"
}
],
"require": {
"php": ">=8.0",
"ext-mbstring": "*",
"ext-pcre": "*",
"ext-xmlreader" : "*",
"zozlak/rdf-constants": "^1.1",
"sweetrdf/rdf-interface": "^2",
"sweetrdf/rdf-helpers": "^2",
"pietercolpaert/hardf": ">=0.3.1 <1",
"ml/json-ld": "^1.2"
},
"suggest": {
"sweetrdf/quick-rdf": "*"
},
"autoload": {
"psr-4": {
"quickRdfIo\\": "src/quickRdfIo"
}
},
"require-dev": {
"phpunit/phpunit": "^10",
"phpstan/phpstan": "^1",
"php-coveralls/php-coveralls": "^2.4",
"sweetrdf/quick-rdf": "^2",
"sweetrdf/term-templates": "^2.0.2",
"sweetrdf/simple-rdf": "^2"
},
"autoload-dev": {
"psr-4": {
"quickRdfIo\\": "tests"
}
}
}