-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
48 lines (48 loc) · 927 Bytes
/
composer.json
File metadata and controls
48 lines (48 loc) · 927 Bytes
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": "cloudloyalty/smsaero-client",
"description": "Client library for smsaero.ru API",
"type": "library",
"keywords": [
"sms",
"api",
"viber",
"smsaero"
],
"license": "MIT",
"authors": [
{
"name": "Feech",
"email": "s.feech@gmail.com"
},
{
"name": "CloudLoyalty Dev Team",
"email": "support@cloudloyalty.ru"
}
],
"require": {
"php": ">=7.2",
"guzzlehttp/guzzle": "^6.0 || ^7.0",
"jms/serializer": "^1.4 || ^2.0 || ^3.0",
"doctrine/annotations": "^1.13"
},
"require-dev": {
"phpstan/phpstan": "^1.12",
"phpstan/phpstan-phpunit": "^1.0",
"phpunit/phpunit": "^8.5.23 || ^9.0"
},
"autoload": {
"psr-4": {
"Feech\\SmsAero\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Feech\\SmsAeroTest\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}