-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
48 lines (48 loc) · 1.12 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": "capcom6/android-sms-gateway",
"description": "Provides access to Android SMS Gateway API",
"type": "library",
"license": "Apache-2.0",
"autoload": {
"psr-4": {
"AndroidSmsGateway\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"AndroidSmsGateway\\Tests\\": "tests/"
}
},
"archive": {
"exclude": [
"tests/",
"vendor/",
"nbproject/",
".github/"
]
},
"require": {
"php": ">=7.4",
"php-http/discovery": "^1.17",
"psr/http-client-implementation": "^1.0"
},
"require-dev": {
"php-http/message": "^1.0",
"php-http/mock-client": "^1.0",
"phpstan/phpstan": "^1.5 || ^2.0",
"phpunit/phpunit": "^9.5",
"php-http/curl-client": "^2.2",
"laminas/laminas-diactoros": "^2.17"
},
"authors": [
{
"name": "Aleksandr Soloshenko",
"email": "i@capcom.me"
}
],
"config": {
"allow-plugins": {
"php-http/discovery": false
}
}
}