-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
37 lines (37 loc) · 1.11 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
{
"name": "sweetrdf/quick-rdf-io-raptor",
"description": "Allows access to Raptor RDF parsing and serializing utility (https://librdf.org/raptor/rapper.html).",
"type": "library",
"keywords": ["RDF", "parser", "serializer", "n-triples", "n-quads", "turtle", "rdf-xml"],
"license": "MIT",
"authors": [
{
"name": "Konrad Abicht",
"email": "hi@inspirito.de",
"homepage": "https://inspirito.de",
"role": "Developer"
}
],
"minimum-stability": "stable",
"prefer-stable": true,
"require": {
"php": ">=8.0",
"sweetrdf/quick-rdf-io": "^1.1.1",
"sweetrdf/rdf-interface": "^2.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.49.0",
"phpstan/phpstan": "^1",
"phpunit/phpunit": "^9||^10",
"sweetrdf/quick-rdf": "^2.0.1"
},
"suggest": {
"sweetrdf/quick-rdf": "Fast implementations of interfaces from sweetrdf\rdfInterface"
},
"autoload": {
"psr-4": {
"quickRdfIo\\Raptor\\": "src/",
"Tests\\": "tests/"
}
}
}