cloud_bbb/composer.json

37 lines
1.2 KiB
JSON
Raw Permalink Normal View History

2020-04-26 11:36:41 +02:00
{
"name": "sualko/bigbluebutton",
"description": "Nextcloud Integration for BigBlueButton",
"type": "project",
"license": "AGPL",
"authors": [
{
"name": "Klaus Herberth",
"email": "klaus@jsxc.org"
}
],
"require": {
"littleredbutton/bigbluebutton-api-php": "^4.0"
2020-04-26 11:36:41 +02:00
},
"require-dev": {
2021-02-13 17:46:36 +01:00
"phpunit/phpunit": "^8.5 || ^9.3",
2022-10-26 19:16:51 +02:00
"friendsofphp/php-cs-fixer": "^3",
"nextcloud/coding-standard": "^1.0.0",
2021-02-13 16:14:40 +01:00
"phpstan/phpstan": "^0.12.29",
"nextcloud/ocp": "^25.0 || ^26.0 || ^27.0",
2021-02-13 16:14:40 +01:00
"vimeo/psalm": "^4.5"
2020-04-26 11:36:41 +02:00
},
"config": {
"optimize-autoloader": true,
"classmap-authoritative": true
},
"scripts": {
2021-02-13 16:47:20 +01:00
"test": "phpunit --configuration phpunit.xml --fail-on-warning",
2021-02-13 16:14:40 +01:00
"cs:check": "php-cs-fixer fix --dry-run --diff",
"cs:fix": "php-cs-fixer fix",
"lint": "find . -name \\*.php -not -path './vendor/*' -exec php -l \"{}\" \\;",
"psalm": "psalm --threads=1",
"psalm:clear": "psalm --clear-cache && psalm --clear-global-cache",
"psalm:fix": "psalm --alter --issues=InvalidReturnType,InvalidNullableReturnType,MissingParamType,InvalidFalsableReturnType"
2020-04-26 11:36:41 +02:00
}
}