forked from digitalcz/gosms
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
80 lines (80 loc) · 1.75 KB
/
composer.json
File metadata and controls
80 lines (80 loc) · 1.75 KB
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "digitalcz/gosms",
"type": "library",
"description": "Provides communication with https://www.gosms.cz/api/ in PHP via PSR-18 http client",
"keywords": [
"digitalcz",
"gosms",
"go-sms",
"php"
],
"homepage": "https://github.com/digitalcz/gosms",
"license": "MIT",
"authors": [
{
"name": "Digital Solutions s.r.o.",
"email": "devs@digital.cz",
"homepage": "https://digital.cz",
"role": "Developer"
},
{
"name": "Filip Klouček",
"email": "filip.kloucek@gmail.com",
"homepage": "https://github.com/fidovo",
"role": "Developer"
}
],
"require": {
"php": "^7.2 || ^8.0",
"ext-json": "*",
"php-http/discovery": "^1.7",
"psr/http-client": "^1.0",
"psr/http-message": "^1.0.1",
"psr/simple-cache": "^1.0"
},
"suggest": {
"symfony/http-client": "*"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^0.7",
"nyholm/psr7": "^1.3",
"php-http/mock-client": "^1.3",
"php-http/httplug": "^2.1",
"phpstan/phpstan": "^0.12.77",
"phpunit/phpunit": "^8.5",
"slevomat/coding-standard": "^6.3",
"squizlabs/php_codesniffer": "^3.5.8",
"symfony/cache": "^5.2",
"symfony/http-client": "^5.2",
"symfony/var-dumper": "^5.2"
},
"autoload": {
"psr-4": {
"DigitalCz\\GoSms\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"DigitalCz\\GoSms\\": "tests"
}
},
"scripts": {
"tests": "phpunit",
"phpstan": "phpstan analyse",
"cs": "phpcs -p",
"csfix": "phpcbf -p",
"checks": [
"@cs",
"@phpstan",
"@tests"
]
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"config": {
"sort-packages": true
}
}