nextcloud-contacts/composer.json

26 lines
661 B
JSON

{
"name": "nextcloud/contacts",
"config": {
"optimize-autoloader": true,
"classmap-authoritative": true,
"platform": {
"php": "7.3"
}
},
"scripts": {
"cs:fix": "php-cs-fixer fix",
"cs:check": "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:integration": "phpunit -c phpunit.integration.xml --fail-on-warning"
},
"require": {
"php": ">=7.3 <8.2"
},
"require-dev": {
"christophwurst/nextcloud_testing": "^0.12.4",
"phpunit/phpunit": "^9",
"nextcloud/coding-standard": "^1.0.0"
}
}