cookbook/composer.json

23 строки
689 B
JSON

{
"name": "nextcloud-apps/cookbook",
"description": "An integrated cookbook using YAML files as recipes",
"type": "project",
"license": "AGPL",
"authors": [
{
"name": "Jeppe Zapp"
}
],
"require": {
"ext-libxml": "*"
},
"require-dev": {
"nextcloud/coding-standard": "^0.5.0"
},
"scripts": {
"cs:check": "./vendor/bin/php-cs-fixer fix --dry-run --diff",
"cs:fix": "./vendor/bin/php-cs-fixer fix",
"lint:lint": "find . -name '*.php' -not -path './vendor/*' -not -path './.github/*' -not -path './node_modules/*' -not -path './tests/phpunit/*' -print0 | xargs -0 -n1 php -l"
}
}