-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
39 lines (39 loc) · 976 Bytes
/
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
{
"name": "bulkgate/php-sdk",
"description": "Simple PHP SDK for sending SMS/Viber via BulkGate portal.",
"keywords": ["sms", "bulkgate", "nette", "viber"],
"homepage": "https://www.bulkgate.com",
"license": ["BSD-3-Clause"],
"authors": [
{
"name": "TOPefekt s.r.o.",
"homepage": "https://www.bulkgate.com"
},
{
"name": "Lukáš Piják",
"homepage": "http://www.lukaspijak.com"
}
],
"require": {
"php": ">=7.4",
"ext-json": "*",
"ext-zlib": "*",
"ext-mbstring": "*"
},
"require-dev": {
"nette/tester": "~2.0",
"tracy/tracy": "^2.9",
"phpstan/phpstan": "^1.9",
"mockery/mockery": "^1.5",
"nette/di": "^3.0"
},
"autoload": {
"classmap": ["src/"]
},
"minimum-stability": "RC",
"scripts": {
"tester": "tester tests -s -C",
"coverage": "tester -C tests --coverage=coverage.html --coverage-src=src",
"phpstan": "phpstan analyse -c phpstan.neon --xdebug"
}
}