-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcomposer.json
More file actions
63 lines (63 loc) · 1.24 KB
/
composer.json
File metadata and controls
63 lines (63 loc) · 1.24 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
{
"name": "solapi/sdk",
"description": "SOLAPI SDK for PHP",
"version": "5.1.2",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Nurigo\\Solapi\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Nurigo\\Solapi\\Tests\\": "tests/"
}
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/solapi/solapi-php"
}
],
"keywords": [
"solapi",
"korea sms",
"korea mms",
"korea lms",
"sdk",
"kakao alimtalk",
"kakao brand message",
"korea voice message",
"korea fax"
],
"authors": [
{
"name": "Nurigo CX Team",
"email": "contact@nurigo.net"
},
{
"name": "Subin Lee",
"email": "chandar.sblee@gmail.com",
"homepage": "https://subux.dev"
}
],
"minimum-stability": "stable",
"homepage": "https://solapi.com",
"require": {
"php": ">=7.1",
"ext-json": "*",
"psr/http-client": "^1.0",
"psr/http-message": "^1.0 || ^2.0",
"nyholm/psr7": "^1.5"
},
"require-dev": {
"phpunit/phpunit": "^9.5"
},
"scripts": {
"test": "phpunit",
"test:unit": "phpunit --testsuite=Unit",
"test:e2e": "phpunit --testsuite=E2E",
"test:coverage": "phpunit --coverage-text"
}
}