-
Notifications
You must be signed in to change notification settings - Fork 89
/
composer.json
63 lines (63 loc) · 1.64 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
{
"name": "semsol/arc2",
"type": "library",
"description": "ARC2 is a PHP library for working with RDF. It also provides a MySQL-based triplestore with SPARQL support.",
"keywords": ["rdf","sparql"],
"homepage": "https://github.com/semsol/arc2",
"license": [
"GPL-2.0-or-later",
"W3C"
],
"support": {
"issues": "https://github.com/semsol/arc2/issues"
},
"authors": [
{
"name": "Benji Nowack",
"homepage": "http://bnowack.de/",
"role": "Creator, Developer"
},
{
"name": "Konrad Abicht",
"homepage": "https://inspirito.de",
"email": "[email protected]",
"role": "Maintainer, Developer"
}
],
"require": {
"ext-mbstring": "*",
"php": "^8.0.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3",
"phpunit/phpunit": "^9"
},
"autoload": {
"classmap": ["parsers/", "serializers/", "store/"],
"files": [
"./ARC2.php",
"./ARC2_Class.php",
"./ARC2_getFormat.php",
"./ARC2_getPreferredFormat.php",
"./ARC2_Graph.php",
"./ARC2_Reader.php",
"./ARC2_Resource.php"
],
"psr-4": {
"ARC2\\": [
"src/ARC2/"
]
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": [
"tests"
]
}
},
"scripts": {
"phpunit": "vendor/bin/phpunit",
"phpunit-with-coverage": "vendor/bin/phpunit --coverage-clover gen/coverage/clover.xml"
}
}