-
Notifications
You must be signed in to change notification settings - Fork 205
Expand file tree
/
Copy pathcomposer.json
More file actions
43 lines (43 loc) · 1.18 KB
/
composer.json
File metadata and controls
43 lines (43 loc) · 1.18 KB
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
{
"name": "nextcloud/contacts",
"config": {
"optimize-autoloader": true,
"platform": {
"php": "8.1"
},
"autoloader-suffix": "Contacts",
"allow-plugins": {
"bamarni/composer-bin-plugin": true
}
},
"autoload": {
"psr-4": {
"OCA\\Contacts\\": "lib/"
}
},
"scripts": {
"cs:fix": "php-cs-fixer fix",
"cs:fix:force": "PHP_CS_FIXER_IGNORE_ENV=1 php-cs-fixer fix",
"cs:check": "php-cs-fixer fix --dry-run --diff",
"cs:check:force": "PHP_CS_FIXER_IGNORE_ENV=1 php-cs-fixer fix --dry-run --diff",
"lint": "find . -name \\*.php -not -path './vendor/*' -print0 | xargs -0 -n1 php -l",
"test:unit": "phpunit -c phpunit.xml --fail-on-warning",
"test:unit:coverage": "phpunit --coverage-clover coverage.xml -c phpunit.xml --fail-on-warning ",
"test:unit:dev": "phpunit -c phpunit.xml --fail-on-warning --stop-on-error --stop-on-failure",
"test:integration": "phpunit -c phpunit.integration.xml --fail-on-warning",
"psalm": "psalm"
},
"require": {
"php": ">=8.1 <=8.4"
},
"require-dev": {
"nextcloud/coding-standard": "^1.4",
"bamarni/composer-bin-plugin": "^1.9.1"
},
"extra": {
"bamarni-bin": {
"bin-links": true,
"forward-command": true
}
}
}