forked from semsol/arc2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
66 lines (66 loc) · 1.86 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
64
65
66
{
"name": "semsol/arc2",
"type": "library",
"description": "ARC2 is a PHP 5.6+ library for working with RDF (It may be compatible with PHP 5.3+ but outdated versions are no longer tested). 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": {
"php": ">=7.2",
"psr/simple-cache": "^1.0",
"symfony/cache": "^4.4",
"thingengineer/mysqli-database-class": "2.*"
},
"require-dev": {
"doctrine/instantiator": "^1.3",
"friendsofphp/php-cs-fixer": "*",
"phpunit/phpunit": "^8.0"
},
"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"
}
}