-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
52 lines (52 loc) · 1.03 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
{
"name": "minchao/mitake-php",
"description": "A Mitake SMS SDK for PHP (Unofficial)",
"type": "library",
"keywords": [
"mitake",
"api",
"sms",
"sms-sdk",
"taiwan-sms"
],
"homepage": "https://github.com/minchao/mitake-php",
"license": "MIT",
"support": {
"issues": "https://github.com/minchao/mitake-php/issues"
},
"require": {
"php": ">=5.6",
"guzzlehttp/guzzle": "^6.3|^7.3"
},
"require-dev": {
"codacy/coverage": "^1.4",
"phpunit/phpunit": "^5.7",
"slim/slim": "^3.9",
"squizlabs/php_codesniffer": "^3.1",
"symfony/console": "^3.3"
},
"autoload": {
"psr-4": {
"Mitake\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Mitake\\Console\\": "console",
"Mitake\\Tests\\": "tests"
}
},
"config": {
"sort-packages": true
},
"scripts": {
"check": [
"@cs-check",
"@test"
],
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"test": "phpunit",
"coverage": "phpunit --coverage-clover=coverage.xml"
}
}