-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
51 lines (51 loc) · 1.63 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
{
"name": "pietercolpaert/hardf",
"description": "A fast parser for RDF serializations such as turtle, n-triples, n-quads, trig and N3",
"homepage": "https://github.com/pietercolpaert/hardf",
"keywords": ["turtle","rdf","rdf1.1", "quads", "triples","n-triples","n-quads","trig", "n3","linked data", "open data", "streaming"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Pieter Colpaert",
"homepage": "https://pietercolpaert.be",
"email": "[email protected]",
"role": "developer"
},
{
"name": "Ruben Verborgh",
"homepage": "https://ruben.verborgh.org",
"email": "[email protected]",
"role": "developer"
}
],
"support": {
"source": "https://github.com/pietercolpaert/hardf",
"issues": "https://github.com/pietercolpaert/hardf/issues"
},
"autoload": {
"psr-4": {
"pietercolpaert\\hardf\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\hardf\\": "test/"
}
},
"require": {
"php": "^7.1|^8.0"
},
"require-dev" : {
"friendsofphp/php-cs-fixer": "*",
"phpstan/phpstan": "^0.12.36",
"phpunit/phpunit": "^7 || ^8 || ^9"
},
"scripts": {
"cs": "vendor/bin/php-cs-fixer fix",
"cs-dry-run": "vendor/bin/php-cs-fixer fix --dry-run",
"phpstan": "vendor/bin/phpstan analyse -c phpstan.neon -vvv",
"phpunit": "vendor/bin/phpunit",
"phpunit-with-coverage": "vendor/bin/phpunit --coverage-text"
}
}