forked from Vonage/vonage-php-sdk-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
57 lines (57 loc) · 1.26 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
56
57
{
"name": "nexmo/client-core",
"description": "PHP Client for using Nexmo's API.",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Tim Lytle",
"email": "tim@nexmo.com",
"role": "Developer",
"homepage": "http://twitter.com/tjlytle"
},
{
"name": "Michael Heap",
"email": "michael.heap@vonage.com",
"role": "Developer"
},
{
"name": "Lorna Mitchell",
"email": "lorna.mitchell@vonage.com",
"role": "Developer"
},
{
"name": "Chris Tankersley",
"email": "chris.tankersley@vonage.com",
"role": "Developer"
}
],
"support": {
"email": "devrel@nexmo.com"
},
"require": {
"php": ">=7.1",
"php-http/client-implementation": "^1.0",
"zendframework/zend-diactoros": "^1.8.4 || ^2.0",
"lcobucci/jwt": "^3.2",
"ocramius/package-versions": "^1.4"
},
"require-dev": {
"phpunit/phpunit": "^7.4",
"php-http/mock-client": "^0.3.0",
"estahn/phpunit-json-assertions": "^3.0.0",
"squizlabs/php_codesniffer": "^3.1",
"php-http/guzzle6-adapter": "^1.0"
},
"autoload": {
"psr-4": {
"Nexmo\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Nexmo\\": "test/",
"NexmoTest\\": "test/"
}
}
}