-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
40 lines (39 loc) · 1020 Bytes
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"name": "djoudi/bbb-laravel",
"description": "Bigbluebutton wrapper for laravel",
"license": "MIT",
"keywords": ["laravel", "bigbluebutton", "wrapper"],
"authors": [
{
"name": "Abdelouahab Djoudi",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=7.1",
"laravel/framework": "^5.5.0|^6.0|^7.0|^8.0",
"bigbluebutton/bigbluebutton-api-php": "2.1.4"
},
"autoload": {
"psr-4": {
"Djoudi\\Bigbluebutton\\":"src/"
}
},
"extra": {
"laravel": {
"providers": [
"Djoudi\\Bigbluebutton\\BigbluebuttonProviderService"
],
"aliases": {
"Meeting": "Djoudi\\Bigbluebutton\\BigbluebuttonMeeting"
}
}
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true
}
}