-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
31 lines (31 loc) · 931 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
{
"name": "shinobu/PHP-SparqlParser",
"type": "library",
"description": "PHP based Parser for SPARQL 1.1",
"keywords": ["PHP-SparqlParser", "SPARQL", "SPARQL 1.1", "RDF", "Triple Store"],
"license": "MIT License",
"authors": [
{
"name": "Fabian Niehoff",
"homepage": "https://www.github.com/shinobu"
}
],
"minimum-stability": "dev",
"require": {
"php": ">=5.4.0",
"phpunit/phpunit": "5.6.*",
"easyrdf/easyrdf": "0.9.*",
"shinobu/jlex-php": "*",
"shinobu/lemon-php": "*"
},
"scripts": {
"pre-autoload-dump": [
"( cd vendor/shinobu/jlex-php; javac JLexPHP/Main.java)",
"( cd vendor/shinobu/jlex-php; jar cvf JLexPHP.jar JLexPHP/*.class)",
"( cd vendor/shinobu/lemon-php; cc -o lemon lemon.c)"
]
},
"autoload": {
"psr-4": {"ASPIS\\": ""}
}
}