Editing: composer.json
{ "name": "joisarjignesh/bigbluebutton", "description": "BigBlueButton Server API Library for Laravel", "keywords": [ "joisarjignesh", "bigbluebutton", "api", "bbb", "meeting", "package", "laravel-package", "laravel", "php" ], "homepage": "https://github.com/joisarjignesh/bigbluebutton", "license": "MIT", "version": "v2.8", "type": "library", "authors": [ { "name": "Jignesh Joisar", "email": "jigneshjoisar@gmail.com", "homepage": "https://jigneshjoisar.web.app", "role": "Developer" } ], "require": { "php": "^7.4|^8.0|^8.1|^8.2", "illuminate/support": "^5.5|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0", "littleredbutton/bigbluebutton-api-php": "~5.0" }, "require-dev": { "orchestra/testbench": "^4.0|^7.0|^8.0", "phpunit/phpunit": "^8.0|^9.0|^10.0" }, "autoload": { "psr-4": { "JoisarJignesh\\Bigbluebutton\\": "src/" }, "files": [ "src/helpers.php" ] }, "autoload-dev": { "psr-4": { "JoisarJignesh\\Bigbluebutton\\Tests\\": "tests/" } }, "scripts": { "test": "vendor/bin/phpunit", "test-coverage": "vendor/bin/phpunit --coverage-html coverage" }, "config": { "sort-packages": true }, "minimum-stability": "dev", "prefer-stable": true, "support": { "source": "https://github.com/joisarjignesh/bigbluebutton", "issues": "https://github.com/joisarjignesh/bigbluebutton/issues", "docs": "https://github.com/joisarjignesh/bigbluebutton/blob/master/README.md" }, "extra": { "laravel": { "providers": [ "JoisarJignesh\\Bigbluebutton\\BigbluebuttonServiceProvider" ], "aliases": { "Bigbluebutton": "JoisarJignesh\\Bigbluebutton\\Facades\\Bigbluebutton" } } } }
Save
Back