calendar/composer.json

24 lines
692 B
JSON

{
"config": {
"platform": {
"php": "7.2"
}
},
"require": {
"php": ">=7.2",
"nextcloud/coding-standard": "^0.3.0"
},
"require-dev": {
"christophwurst/nextcloud": "v19.0.0",
"christophwurst/nextcloud_testing": "0.10.0",
"phan/phan": "^3.0"
},
"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",
"phan": "phan --allow-polyfill-parser -k .phan/config.php",
"test": "phpunit --configuration phpunit.unit.xml --fail-on-warning"
}
}