-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
57 lines (57 loc) · 1.38 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
{
"name": "webeweb/smsmode-library",
"description": "Integrate sMsmode API with your projects",
"license": "MIT",
"type": "library",
"keywords": [
"webeweb",
"library",
"sMsmode"
],
"authors": [
{
"name": "webeweb",
"homepage": "https://github.com/webeweb"
}
],
"homepage": "https://github.com/webeweb/smsmode-library",
"support": {
"issues": "https://github.com/webeweb/smsmode-library/issues"
},
"require": {
"php": "^7.1|^8.0",
"ext-iconv": "*",
"ext-json": "*",
"guzzlehttp/guzzle": "^6.0|^7.0",
"psr/log": "^1.0|^2.0|^3.0",
"symfony/yaml": "^4.4|^5.0|^6.0",
"webeweb/core-library": "^9.0"
},
"require-dev": {
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan": "^1.4",
"phpstan/phpstan-phpunit": "^1.0",
"phpunit/phpunit": "^7.0|^9.0"
},
"autoload": {
"psr-4": {
"WBW\\Library\\SmsMode\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"WBW\\Library\\SmsMode\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
},
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "4.x-dev"
}
}
}