-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcomposer.json
36 lines (36 loc) · 878 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
{
"name": "polidog/php-chatwork-api",
"description": "Chatwork api library for php",
"keywords": ["chatwork","api"],
"homepage": "https://github.com/polidog/php-chatwork-api",
"license" : "MIT",
"authors": [
{
"name": "polidog",
"email": "[email protected]",
"homepage": "http://www.polidog.jp"
}
],
"require": {
"ext-json": "*",
"php": ">=7.4",
"guzzlehttp/guzzle": "^7.0",
"cakephp/utility": "^4.3"
},
"require-dev": {
"phpunit/phpunit": "^9.6",
"phpspec/prophecy": "^1.17",
"phpspec/prophecy-phpunit": "^2.0",
"friendsofphp/php-cs-fixer": "^3.23"
},
"autoload": {
"psr-4": {"Polidog\\Chatwork\\": "src/"}
},
"autoload-dev": {
"psr-4": {"Polidog\\Chatwork\\": "tests/"}
},
"scripts": {
"test": "./vendor/bin/phpunit",
"cs-fixer": "./vendor/bin/php-cs-fixer fix"
}
}