forms/composer.json

38 строки
849 B
JSON

{
"name": "nextcloud/forms",
"config": {
"optimize-autoloader": true,
"classmap-authoritative": true,
"sort-packages": true,
"platform": {
"php": "8.0"
},
"allow-plugins": {
"bamarni/composer-bin-plugin": true
}
},
"scripts": {
"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.phar"
},
"require-dev": {
"bamarni/composer-bin-plugin": "^1.5",
"guzzlehttp/guzzle": "^7.4",
"nextcloud/ocp": "^27.0.0",
"phpunit/phpunit": "^9",
"psalm/phar": "^5.8"
},
"require": {
"league/csv": "^9.8.0"
},
"extra": {
"bamarni-bin": {
"forward-command": true
}
}
}