-
Notifications
You must be signed in to change notification settings - Fork 72
/
Copy pathcomposer.json
55 lines (55 loc) · 1.33 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": "infobip/infobip-api-php-client",
"description": "PHP library for consuming Infobip's API",
"version": "6.2.1",
"keywords": [
"infobip",
"sms",
"whatsapp",
"messaging",
"email",
"viber",
"calls",
"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.3",
"ext-curl": "*",
"ext-json": "*",
"ext-mbstring": "*",
"guzzlehttp/guzzle": "~7.0",
"symfony/validator": "^7.0",
"symfony/serializer": "^7.0",
"symfony/property-access": "^7.0",
"symfony/cache": "^7.0",
"phpdocumentor/reflection-docblock": "^5.0|^6.0"
},
"require-dev": {
"phpunit/phpunit": "~9.0",
"phpstan/phpstan": "^1.0",
"squizlabs/php_codesniffer": "^3.0",
"friendsofphp/php-cs-fixer": "^3.0"
},
"autoload": {
"psr-4": { "Infobip\\" : "Infobip/" }
},
"autoload-dev": {
"psr-4": { "Infobip\\Test\\" : "Test/" }
}
}