cloud_bbb/composer.json

33 lines
824 B
JSON
Raw 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"
}
],
2020-04-26 12:13:04 +02:00
"repositories": [
{
"type": "vcs",
2020-05-22 13:32:57 +02:00
"url": "https://github.com/littleredbutton/bigbluebutton-api-php/"
2020-04-26 12:13:04 +02:00
}
],
2020-04-26 11:36:41 +02:00
"require": {
2020-05-22 13:32:57 +02:00
"bigbluebutton/bigbluebutton-api-php": "dev-master"
2020-04-26 11:36:41 +02:00
},
"require-dev": {
"phpunit/phpunit": "^7.5",
"friendsofphp/php-cs-fixer": "^2.16"
},
"config": {
"optimize-autoloader": true,
"classmap-authoritative": true
},
"scripts": {
"lint": "find . -name \\*.php -not -path './vendor/*' -exec php -l \"{}\" \\;"
}
}