forms/composer.json

42 строки
978 B
JSON

{
"name": "nextcloud/forms",
"config": {
"optimize-autoloader": true,
"classmap-authoritative": true,
"sort-packages": true,
"platform": {
"php": "8.1"
},
"allow-plugins": {
"bamarni/composer-bin-plugin": true
}
},
"scripts": {
"post-install-cmd": [
"@composer bin psalm install --ansi",
"@composer bin cs-fixer install --ansi"
],
"bin": "echo 'bin not installed'",
"cs:fix": "php-cs-fixer fix",
"cs:check": "php-cs-fixer fix --dry-run --diff",
"lint": "find . -name \\*.php -not -path './vendor*/*' -print0 | xargs -0 -n1 php -l",
"test:unit": "phpunit -c tests/phpunit.xml",
"test:integration": "phpunit -c tests/phpunit.integration.xml",
"psalm": "psalm"
},
"require-dev": {
"bamarni/composer-bin-plugin": "^1.8",
"nextcloud/ocp": "dev-stable30",
"phpunit/phpunit": "^9"
},
"require": {
"phpoffice/phpspreadsheet": "^3.3"
},
"extra": {
"bamarni-bin": {
"bin-links": true,
"forward-command": true
}
}
}