-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
55 lines (55 loc) · 1.31 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
47
48
49
50
51
52
53
54
55
{
"name": "botjaeger/nexmo-bundle",
"description": "Integrates vonage/client in symfony >= 4",
"type": "symfony-bundle",
"keywords": [
"symfony",
"bundle",
"nexmo",
"sms",
"2fa",
"vonage"
],
"license": "MIT",
"authors": [
{
"name": "Jarn Gotostos",
"email": "jarn.gotostos@gmail.com"
}
],
"autoload": {
"psr-4": {
"Botjaeger\\VonageBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Botjaeger\\VonageBundle\\": "tests/"
}
},
"require": {
"php": ">=7.1",
"php-http/guzzle7-adapter": "^1.0",
"symfony/config": "^3.4|^4.0",
"symfony/dependency-injection": "^3.4|^4.0",
"symfony/http-client": "^3.4|^4.0",
"symfony/http-kernel": "^3.4|^4.0",
"symfony/yaml": "^3.4|^4.0",
"vonage/client-core": "2.1.0"
},
"require-dev": {
"symfony/browser-kit": "^4.3",
"symfony/css-selector": "^4.3",
"symfony/framework-bundle": "^3.4|^4.1",
"symfony/phpunit-bridge": "^5.1"
},
"config": {
"sort-packages": true
},
"minimum-stability": "stable",
"extra": {
"symfony": {
"allow-contrib": "true"
}
}
}