-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
40 lines (40 loc) · 991 Bytes
/
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
{
"name": "sweetrdf/simple-rdf",
"type": "library",
"description": "As simple as possible rdfInterface implementation",
"keywords": [],
"homepage": "https://github.com/sweetrdf/simpleRdf",
"license": "MIT",
"authors": [
{
"name": "Mateusz Żółtak",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": ">=8.0",
"zozlak/rdf-constants": "^1.1",
"sweetrdf/rdf-interface": "^2",
"sweetrdf/rdf-helpers": "^2"
},
"suggest": {
"sweetrdf/quick-rdf-io": "*"
},
"autoload": {
"psr-4": {
"simpleRdf\\": "src/simpleRdf"
}
},
"require-dev": {
"phpunit/phpunit": "^10",
"phpstan/phpstan": "^1",
"sweetrdf/rdf-interface-tests": "2.0.0",
"sweetrdf/term-templates": "^2"
},
"autoload-dev": {
"psr-4": {
"simpleRdf\\": "tests"
}
}
}