-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
59 lines (59 loc) · 1.42 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
51
52
53
54
55
56
57
58
59
{
"name": "opus4-repo/opus4-import",
"description": "OPUS 4 Import Library",
"license": "GPL-2.0+",
"type": "library",
"keywords": [
"opus4",
"import"
],
"homepage": "https://www.opus-repository.org",
"require": {
"ext-dom": "*",
"ext-fileinfo": "*",
"ext-libxml": "*",
"ext-zip": "*",
"opus4-repo/opus4-common": "^4.8",
"opus4-repo/opus4-job": ">4.8"
},
"require-dev": {
"phpunit/phpunit": "<9",
"opus4-repo/codesniffer": "dev-laminas",
"phpmetrics/phpmetrics": "2.7.4",
"opus4-repo/framework": "^4.8"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"autoload": {
"psr-4": {
"Opus\\Import\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"OpusTest\\Import\\": "test/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"check": [
"@cs-check",
"@test"
],
"check-full": [
"@prepare",
"@cs-report",
"@test-coverage"
],
"prepare": "mkdir -p build",
"test": "phpunit --colors=always --log-junit build/phpunit.xml",
"test-coverage": "phpunit --log-junit build/phpunit.xml --colors=always --coverage-html build/coverage/ --coverage-clover build/coverage/clover.xml",
"cs-check": "phpcs -n -p",
"cs-report": "phpcs -n --report=checkstyle --report-file=build/checkstyle.xml",
"cs-fix": "phpcbf"
}
}