-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
44 lines (44 loc) · 1.06 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
{
"name": "wterberg/dcat-ap-donl",
"description": "Allows for creation and validation of datasets conforming to the DCAT-AP-DONL 1.1 metadata standard",
"type": "library",
"license": "MIT",
"minimum-stability": "stable",
"prefer-stable": true,
"config": {
"sort-packages": true,
"preferred-install": "dist",
"optimize-autoloader": true
},
"authors": [
{
"name": "Willem ter Berg",
"email": "[email protected]",
"homepage": "https://wterberg.nl"
}
],
"scripts": {
"post-update-cmd": [
"vendor/bin/xs-config --type=standard --force=false",
"vendor/bin/xs-dependencies"
]
},
"autoload": {
"psr-4": {
"DCAT_AP_DONL\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"require": {
"php": "^8.2",
"ext-curl": "*",
"ext-json": "*"
},
"require-dev": {
"xpertselect/tools": "^1.0"
}
}