-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
41 lines (41 loc) · 1.03 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
{
"name": "acdh-oeaw/arche-ref-sources",
"type": "library",
"description": "Library for fetching data from external reference sources",
"keywords": [],
"homepage": "https://github.com/acdh-oeaw/arche-ref-sources",
"license": "MIT",
"authors": [
{
"name": "Mateusz Żółtak",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1",
"psr/log": "^3",
"zozlak/argparse": "^1",
"acdh-oeaw/arche-assets": "^3.8.1",
"acdh-oeaw/arche-lib": "^7",
"acdh-oeaw/uri-normalizer": "^3",
"zozlak/logging": "^1.0"
},
"autoload": {
"psr-4": {
"acdhOeaw\\": "src/acdhOeaw"
}
},
"require-dev": {
"phpunit/phpunit": "^10",
"phpstan/phpstan": "^1",
"acdh-oeaw/arche-lib-ingest": "^4.0 | ^5.0"
},
"autoload-dev": {
"psr-4": {
"acdhOeaw\\arche\\refSources\\tests\\": "tests"
}
},
"bin": [
"bin/arche-ref-sources"
]
}