forked from Vonage/vonage-laravel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
46 lines (46 loc) · 1.13 KB
/
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": "vonage/vonage-laravel",
"description": "Service provider for Laravel for the Vonage PHP SDK",
"type": "package",
"require": {
"vonage/client": "^4.0",
"php": "^8.0|^8.1|^8.2",
"illuminate/support": "^9.0|^10.0"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"phpunit/phpunit": "^5.3|~6.0|~8.0|~9.0",
"orchestra/testbench": "^4.0|^5.0|^6.0|^7.0"
},
"license": "MIT",
"autoload": {
"psr-4": {
"Vonage\\Laravel\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Vonage\\Laravel\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Vonage\\Laravel\\VonageServiceProvider"
],
"aliases": {
"Vonage": "Vonage\\Laravel\\Facade\\Vonage"
}
}
},
"scripts": {
"test": "phpunit"
},
"authors": [
{
"name": "James Seconde",
"role": "PHP Developer Advocate",
"email": "[email protected]"
}
]
}