-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
46 lines (46 loc) · 950 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
41
42
43
44
45
46
{
"name": "escolalms/jitsi",
"description": "Escola LMS jitsi integration.",
"type": "package",
"require": {
"php": ">=7.4",
"laravel/framework": ">=8.0",
"escolalms/core": "^1",
"escolalms/auth": "^0",
"escolalms/settings": "^0",
"firebase/php-jwt": "^6|^5"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"orchestra/testbench": "^6"
},
"license": "MIT",
"authors": [
{
"name": "Mateusz Wojczal",
"email": "mateusz@wojczal.com"
}
],
"autoload": {
"psr-4": {
"EscolaLms\\Jitsi\\": "src",
"EscolaLms\\Jitsi\\Tests\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"EscolaLms\\Jitsi\\EscolaLmsJitsiServiceProvider"
]
}
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"php-http/discovery": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}