app-tutorial/composer.json

30 строки
806 B
JSON
Исходник Обычный вид История

2017-07-30 12:18:28 +03:00
{
"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": "^8.5",
"nextcloud/coding-standard": "^1.0.0",
"nextcloud/ocp": "dev-stable25"
},
"config": {
"optimize-autoloader": true,
2020-09-04 21:58:08 +03:00
"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"
2017-07-30 12:18:28 +03:00
}
}