-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
50 lines (50 loc) · 1.02 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
45
46
47
48
49
50
{
"name": "opus4-repo/opus4-doi",
"description": "OPUS 4 DOI support library",
"license": "GPL-2.0+",
"type": "library",
"keywords": [
"opus4",
"doi"
],
"homepage": "http://www.opus-repository.org",
"require": {
"php": ">=8.1",
"ext-dom": "*",
"ext-curl": "*",
"ext-mbstring": "*",
"ext-zip": "*",
"opus4/zf1-future": "1.21.*"
},
"require-dev": {
"phpunit/phpunit": "10.5.*",
"opus4-repo/codesniffer": "dev-laminas"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Opus\\Doi\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"OpusTest\\Doi\\": "test/"
}
},
"scripts": {
"check": [
"@cs-check",
"@test"
],
"test": "phpunit --colors=always",
"test-coverage": "phpunit --colors=always --coverage-clover build/clover.xml",
"cs-check": "phpcs",
"cs-fix": "phpcbf"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}