-
Notifications
You must be signed in to change notification settings - Fork 68
/
composer.json
48 lines (48 loc) · 1.18 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
{
"name": "infobip/infobip-api-php-client",
"description": "PHP library for consuming Infobip's API",
"version": "5.1.4",
"keywords": [
"infobip",
"sms",
"php",
"tfa",
"sdk",
"rest",
"api",
"msisdn",
"2fa",
"openapi"
],
"homepage": "https://www.infobip.com",
"license": "MIT",
"authors": [
{
"name": "Infobip Support",
"email": "[email protected]",
"homepage": "https://www.infobip.com"
}
],
"require": {
"php": ">=8.0",
"ext-curl": "*",
"ext-json": "*",
"ext-mbstring": "*",
"guzzlehttp/guzzle": "~7.0",
"symfony/validator": "^5.0|^6.0",
"symfony/serializer": "^5.4",
"symfony/property-access": "^5.0|^6.0",
"symfony/cache": "^5.0|^6.0",
"doctrine/annotations": "~1.0",
"phpdocumentor/reflection-docblock": "^5.0|^6.0"
},
"require-dev": {
"phpunit/phpunit": "~9.0"
},
"autoload": {
"psr-4": { "Infobip\\" : "Infobip/" }
},
"autoload-dev": {
"psr-4": { "Infobip\\Test\\" : "Infobip/test/" }
}
}