forked from nextcloud/tasks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
28 lines (28 loc) · 867 Bytes
/
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
{
"name": "nextcloud/tasks",
"description": "Nextcloud Tasks",
"type": "project",
"license": "AGPL",
"authors": [
{
"name": "Bernhard Posselt",
"email": "[email protected]"
}
],
"require": {},
"require-dev": {
"nextcloud/coding-standard": "^0.3.0",
"phpunit/phpunit": "^7.5"
},
"config": {
"optimize-autoloader": true,
"classmap-authoritative": true
},
"scripts": {
"cs:check": "php-cs-fixer fix --dry-run --verbose",
"cs:fix": "php-cs-fixer fix",
"lint": "find . -name \\*.php -not -path './vendor/*' -print0 | xargs -0 -n1 php -l",
"test:unit": "phpunit --configuration phpunit.xml --fail-on-warning",
"test:integration": "phpunit --configuration phpunit.integration.xml --fail-on-warning"
}
}