-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
40 lines (40 loc) · 1.09 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
{
"name": "sweetrdf/in-memory-store-sqlite",
"type": "library",
"description": "RDF in-memory quad store implementation using PDO and SQLite.",
"keywords": ["rdf","sparql", "in-memory store"],
"homepage": "https://github.com/sweetrdf/in-memory-store-sqlite",
"license": ["GPL-2.0"],
"authors": [
{
"name": "Konrad Abicht",
"homepage": "https://inspirito.de",
"email": "hi@inspirito.de",
"role": "Maintainer, Developer"
}
],
"require": {
"php": ">=8.0",
"sweetrdf/rdf-interface": "^2.0.0",
"sweetrdf/simple-rdf": "^2.0.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3",
"phpunit/phpunit": "^9.5 || ^10.0",
"sweetrdf/sparql-client": "^0.1"
},
"autoload": {
"files": ["src/functions.php"],
"psr-4": {
"sweetrdf\\InMemoryStoreSqlite\\": ["src/"]
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": ["tests"]
}
},
"scripts": {
"phpunit": "vendor/bin/phpunit"
}
}