forked from line/line-bot-sdk-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
64 lines (64 loc) · 1.65 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
58
59
60
61
62
63
64
{
"name": "linecorp/line-bot-sdk",
"description": "SDK of the LINE BOT API for PHP",
"keywords": [
"LINE",
"bot",
"sdk"
],
"type": "library",
"homepage": "https://github.com/line/line-bot-sdk-php",
"license": "Apache-2.0",
"authors": [
{
"name": "moznion",
"email": "[email protected]",
"role": "Retired"
},
{
"name": "Satoru Yoshihara",
"email": "[email protected]",
"role": "Maintainer"
},
{
"name": "Satoshi Shibuya",
"email": "[email protected]",
"role": "Maintainer"
}
],
"require": {
"php": ">=5.5",
"ext-curl": "*",
"ext-json": "*",
"ext-sockets": "*",
"ext-posix": "*"
},
"require-dev": {
"phpunit/phpunit": "^4.8.24||^5||^6",
"phpmd/phpmd": "~2.4",
"squizlabs/php_codesniffer": "~2.6||^3",
"indigophp/hash-compat": "~1.1.0",
"symfony/config": "^3.3",
"symfony/dependency-injection": "^3.3"
},
"suggest": {
"apigen/apigen": "Install with roave/better-reflection:dev-master to generate docs",
"roave/better-reflection": "Required by apigen/apigen:dev-master"
},
"autoload": {
"psr-4": {
"LINE\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"LINE\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit --debug tests",
"doc": "apigen generate src --destination docs",
"cs": "phpcs --standard=PSR2 src tests examples/EchoBot/src examples/EchoBot/public examples/KitchenSink/src examples/KitchenSink/public",
"md": "phpmd --ignore-violations-on-exit src,examples/EchoBot/src,examples/EchoBot/public,examples/KitchenSink/src,examples/KitchenSink/public text phpmd.xml"
}
}