-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
36 lines (36 loc) · 861 Bytes
/
composer.json
File metadata and controls
36 lines (36 loc) · 861 Bytes
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
{
"name": "asanak/laravel-web-call-client",
"description": "A modern Laravel Web Call client for call and reporting via REST API",
"type": "laravel-package",
"homepage": "https://github.com/Asanak-Team/laravel-web-call-client",
"keywords": [
"laravel",
"Asanak",
"webcall",
"api"
],
"version": "1.0.0",
"require": {
"php": "^8.0 || ^8.1 || ^8.2",
"guzzlehttp/guzzle": "^7.0",
"psr/log": "^1.1 || ^2.0 || ^3.0",
"illuminate/support": "^9.0 || ^10.0 || ^11.0"
},
"autoload": {
"psr-4": {
"Asanak\\WebCall\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Asanak\\WebCall\\WebCallServiceProvider"
],
"aliases": {
"AsanakWebCall": "Asanak\\WebCall\\Facade\\AsanakWebCallFacade"
}
}
},
"minimum-stability": "stable",
"license": "MIT"
}