app-tutorial/composer.json

30 строки
806 B
JSON

{
"name": "nextcloud/app-tutorial",
"description": "Nextcloud App Tutorial",
"type": "project",
"license": "AGPL",
"authors": [
{
"name": "Bernhard Posselt",
"email": "dev@bernhard-posselt.com"
}
],
"require-dev": {
"phpunit/phpunit": "^9.5",
"nextcloud/coding-standard": "^1.0.0",
"nextcloud/ocp": "dev-stable25"
},
"config": {
"optimize-autoloader": true,
"classmap-authoritative": true,
"platform": {
"php": "7.4"
}
},
"scripts": {
"lint": "find . -name \\*.php -not -path './vendor/*' -not -path './build/*' -print0 | xargs -0 -n1 php -l",
"cs:check": "php-cs-fixer fix --dry-run --diff",
"cs:fix": "php-cs-fixer fix"
}
}