-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathcomposer.json
41 lines (40 loc) · 856 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
{
"name": "jubaer/zoom-laravel",
"version": "1.3.0",
"description": "A comprehensive Zoom integration package for Laravel, providing easy-to-use API functionality to interact with the Zoom platform using PHP.",
"homepage": "https://github.com/JubaerHossain/zoom-laravel",
"keywords": [
"laravel-zoom",
"zoom",
"laravel",
"api",
"client"
],
"type": "library",
"require": {
"guzzlehttp/guzzle": "^7.6",
"php": "^7.2|^8.0"
},
"license": "MIT",
"autoload": {
"psr-4": {
"Jubaer\\Zoom\\": "src/"
}
},
"authors": [
{
"name": "jubaer hossain",
"email": "[email protected]"
}
],
"extra": {
"laravel": {
"providers": [
"Jubaer\\Zoom\\ZoomServiceProvider"
],
"aliases": {
"Zoom": "Jubaer\\Zoom\\Facades\\Zoom"
}
}
}
}