-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
40 lines (40 loc) · 1.05 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
{
"name": "acdh-oeaw/arche-schema-ingest",
"description": "Tools for ingesting ARCHE schema into the repository",
"keywords": [],
"homepage": "https://github.com/acdh-oeaw/arche-schema",
"license": "MIT",
"authors": [
{
"name": "Martina Trognitz",
"email": "[email protected]"
},
{
"name": "Mateusz Żółtak",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"acdhOeaw\\": "src/acdhOeaw"
}
},
"require": {
"php": "^8.1",
"guzzlehttp/guzzle": "^7",
"acdh-oeaw/arche-schema": "*",
"acdh-oeaw/arche-lib-ingest": "^4 | ^5",
"zozlak/rdf-constants": "^1.2.1",
"zozlak/argparse": "^1.0",
"composer-runtime-api": "^2.1"
},
"require-dev": {
"phpunit/phpunit": "^10",
"phpstan/phpstan": "*"
},
"bin": [
"bin/arche-import-ontology",
"bin/arche-check-ontology",
"bin/arche-import-vocabularies"
]
}