This repository has been archived by the owner on Sep 15, 2022. It is now read-only.
forked from Vonage/vonage-php-sdk-core
-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
67 lines (67 loc) · 1.69 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
58
59
60
61
62
63
64
65
66
67
{
"name": "nexmo/client-core",
"description": "Deprecated PHP Client for using Vonage's API - please use vonage/client-core",
"license": "Apache-2.0",
"type": "library",
"homepage": "https://developer.nexmo.com",
"authors": [
{
"name": "Chris Tankersley",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Lorna Mitchell",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": ">=7.2",
"ext-json": "*",
"ext-mbstring": "*",
"laminas/laminas-diactoros": "^2.4",
"lcobucci/jwt": "^3.4|^4.0",
"composer/package-versions-deprecated": "^1.11",
"psr/container": "^1.0",
"psr/http-client-implementation": "^1.0",
"vonage/nexmo-bridge": "^0.1.0",
"psr/log": "^1.1"
},
"require-dev": {
"guzzlehttp/guzzle": ">=6",
"helmich/phpunit-json-assert": "^3.3",
"php-http/mock-client": "^1.4",
"phpstan/phpstan": "^0.12",
"phpunit/phpunit": "^8.5|^9.4",
"roave/security-advisories": "dev-latest",
"squizlabs/php_codesniffer": "^3.5",
"softcreatr/jsonpath": "^0.6.4"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist"
},
"autoload": {
"psr-4": {
"Vonage\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"VonageTest\\": "test/"
}
},
"minimum-stability": "stable",
"scripts": {
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"test": "phpunit"
},
"support": {
"email": "[email protected]",
"issues": "https://github.com/Vonage/vonage-php-sdk-core/issues",
"source": "https://github.com/Vonage/vonage-php-sdk-core",
"docs": "https://developer.nexmo.com"
}
}