-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathcomposer.json
More file actions
25 lines (25 loc) · 799 Bytes
/
composer.json
File metadata and controls
25 lines (25 loc) · 799 Bytes
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
{
"require": {
"php": ">=8.1.0",
"ortic/color-converter": "^0.1.0"
},
"scripts": {
"lint": "find . -name \\*.php -not -path './vendor/*' -print0 | xargs -0 -n1 php -l",
"cs:check": "php-cs-fixer fix --dry-run --diff",
"cs:fix": "php-cs-fixer fix",
"psalm": "psalm.phar",
"psalm:update-baseline": "psalm.phar --threads=1 --update-baseline",
"psalm:update-baseline:force": "psalm.phar --threads=1 --update-baseline --set-baseline=psalm-baseline.xml"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3",
"nextcloud/coding-standard": "^1.4",
"psalm/phar": "6.8.x",
"nextcloud/ocp": "dev-master"
},
"config": {
"platform": {
"php": "8.1.0"
}
}
}