-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
60 lines (60 loc) · 1.48 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
60
{
"name": "opus4-repo/opus4-sword",
"description": "OPUS 4 Sword 1.3 Support",
"license": "GPL-2.0+",
"type": "library",
"keywords": [
"opus4",
"import",
"sword"
],
"homepage": "https://www.opus-repository.org",
"require": {
"php": ">=8.1",
"ext-dom": "*",
"ext-simplexml": "*",
"opus4-repo/opus4-common": "dev-master as 4.8.1",
"opus4-repo/opus4-app-common": "*",
"opus4-repo/opus4-import": "dev-main",
"symfony/console": "*"
},
"require-dev": {
"phpunit/phpunit": "10.*",
"opus4-repo/codesniffer": "dev-laminas",
"opus4-repo/framework": "dev-master as 4.8.1"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"autoload": {
"psr-4": {
"Opus\\Sword\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"OpusTest\\Sword\\": "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"
}
}