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": {
|
2023-01-13 21:54:04 +03:00
|
|
|
"phpunit/phpunit": "^9.5",
|
2023-01-13 22:06:20 +03:00
|
|
|
"nextcloud/coding-standard": "^1.0.0",
|
|
|
|
"nextcloud/ocp": "dev-stable25"
|
2020-02-03 15:43:02 +03:00
|
|
|
},
|
|
|
|
"config": {
|
|
|
|
"optimize-autoloader": true,
|
2020-09-04 21:58:08 +03:00
|
|
|
"classmap-authoritative": true,
|
|
|
|
"platform": {
|
2023-01-13 15:24:13 +03:00
|
|
|
"php": "7.4"
|
2020-09-14 09:52:36 +03:00
|
|
|
}
|
2020-02-03 15:43:02 +03:00
|
|
|
},
|
|
|
|
"scripts": {
|
2020-05-13 14:41:14 +03:00
|
|
|
"lint": "find . -name \\*.php -not -path './vendor/*' -not -path './build/*' -print0 | xargs -0 -n1 php -l",
|
2020-04-16 13:13:52 +03:00
|
|
|
"cs:check": "php-cs-fixer fix --dry-run --diff",
|
|
|
|
"cs:fix": "php-cs-fixer fix"
|
2017-07-30 12:18:28 +03:00
|
|
|
}
|
2020-04-16 13:13:52 +03:00
|
|
|
}
|