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": {
|
2021-07-26 15:43:28 +02:00
|
|
|
"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",
|
2023-07-07 09:28:15 +02:00
|
|
|
"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
|
|
|
}
|
2021-07-26 15:43:28 +02:00
|
|
|
}
|