52 строки
1.1 KiB
JSON
52 строки
1.1 KiB
JSON
{
|
|
"name": "nextcloud/integration_github",
|
|
"authors": [
|
|
{
|
|
"name": "Julien Veyssier",
|
|
"email": "julien-nc@posteo.net"
|
|
}
|
|
],
|
|
"require": {
|
|
"league/commonmark": "^2.3",
|
|
"php": "^8.0",
|
|
"bamarni/composer-bin-plugin": "^1.8"
|
|
},
|
|
"scripts": {
|
|
"lint": "find . -name \\*.php -not -path './vendor*' -print0 | xargs -0 -n1 php -l",
|
|
"cs:check": "php-cs-fixer fix --dry-run --diff",
|
|
"cs:fix": "php-cs-fixer fix",
|
|
"psalm": "psalm.phar --no-cache",
|
|
"test:unit": "phpunit -c tests/phpunit.xml --no-coverage",
|
|
"post-install-cmd": [
|
|
"@composer bin all install --ansi",
|
|
"composer dump-autoload"
|
|
],
|
|
"post-update-cmd": [
|
|
"@composer bin all update --ansi",
|
|
"composer dump-autoload"
|
|
]
|
|
},
|
|
"config": {
|
|
"optimize-autoloader": true,
|
|
"classmap-authoritative": true,
|
|
"platform": {
|
|
"php": "8.0"
|
|
},
|
|
"allow-plugins": {
|
|
"bamarni/composer-bin-plugin": true,
|
|
"composer/package-versions-deprecated": true
|
|
}
|
|
},
|
|
"require-dev": {
|
|
"ext-mbstring": "*",
|
|
"nextcloud/ocp": "dev-master"
|
|
},
|
|
"extra": {
|
|
"bamarni-bin": {
|
|
"bin-links": true,
|
|
"target-directory": "vendor-bin",
|
|
"forward-command": true
|
|
}
|
|
}
|
|
}
|