app_template/composer.json
provokateurin 99b105f5a7
fix: Change app id to app_template
Signed-off-by: provokateurin <kate@provokateurin.de>
2024-04-25 10:25:56 +02:00

49 lines
1.1 KiB
JSON

{
"name": "nextcloud/app_template",
"description": "An example description",
"license": "AGPL-3.0-or-later",
"authors": [
{
"name": "example",
"email": "example@example.com"
}
],
"autoload": {
"psr-4": {
"OCA\\AppTemplate\\": "lib/"
}
},
"scripts": {
"post-install-cmd": [
"@composer bin all install --ansi"
],
"post-update-cmd": [
"@composer bin all update --ansi"
],
"lint": "find . -name \\*.php -not -path './vendor/*' -not -path './vendor-bin/*' -not -path './build/*' -print0 | xargs -0 -n1 php -l",
"cs:check": "php-cs-fixer fix --dry-run --diff",
"cs:fix": "php-cs-fixer fix",
"psalm": "psalm --threads=1 --no-cache",
"test:unit": "phpunit tests -c tests/phpunit.xml --colors=always --fail-on-warning --fail-on-risky",
"openapi": "generate-spec"
},
"require": {
"bamarni/composer-bin-plugin": "^1.8",
"php": "^8.1"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"nextcloud/ocp": "dev-stable29"
},
"config": {
"allow-plugins": {
"bamarni/composer-bin-plugin": true
},
"optimize-autoloader": true,
"sort-packages": true,
"platform": {
"php": "8.1"
}
}
}