-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
34 lines (34 loc) · 871 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
32
33
34
{
"name": "pebbie/rmlx-mapper",
"description": "RML Processor for mapping CSV/JSON/XML into RDF",
"type": "library",
"keywords":["RDF","RML", "linked data"],
"homepage": "https://github.com/pebbie/rmlx-mapper",
"license": "MIT",
"scripts": {
"driver": ["@php tests/test.php"],
"test": ["phpunit tests"],
"rmlx": ["php bin/rmlx"]
},
"require": {
"easyrdf/easyrdf": "^0.9.1",
"flow/jsonpath": "^0.4.0",
"phpoffice/phpspreadsheet": "dev-master"
},
"require-dev": {
"phpunit/phpunit": "^5.7"
},
"authors": [
{
"name": "pebbie",
"email": "pebbie@gmail.com",
"homepage": "http://about.me/peb"
}
],
"minimum-stability": "dev",
"autoload": {
"psr-4" : {
"Rmlx\\":"src"
}
}
}