-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
52 lines (52 loc) · 1.39 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": "otobank/treasure",
"description": "TreasureData REST API Wrapper",
"autoload": {
"psr-4": {
"Otobank\\Treasure\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Otobank\\Treasure\\Tests\\": "tests"
}
},
"require": {
"php": "^7.2.5 || ^8.0",
"guzzlehttp/guzzle": "^7.2"
},
"license": "MIT",
"authors": [
{
"name": "Keisuke Sato",
"email": "ksato@otobank.co.jp"
}
],
"require-dev": {
"phpunit/phpunit": "^8.5",
"bamarni/composer-bin-plugin": "^1.8"
},
"scripts": {
"cs": [
"@putenv PHP_CS_FIXER_IGNORE_ENV=1",
"vendor-bin/tools/vendor/bin/php-cs-fixer fix --config .php-cs-fixer.dist.php --dry-run --diff -v src tests"
],
"cs:fix": [
"@putenv PHP_CS_FIXER_IGNORE_ENV=1",
"vendor-bin/tools/vendor/bin/php-cs-fixer fix --config .php-cs-fixer.dist.php src tests"
],
"sa": "@php -d memory_limit=-1 vendor-bin/tools/vendor/bin/phpstan analyse --configuration=phpstan.neon",
"test": "vendor/bin/phpunit",
"tests": ["@cs", "@sa", "@test"]
},
"config": {
"allow-plugins": {
"bamarni/composer-bin-plugin": true
}
},
"extra": {
"bamarni-bin": {
"bin-links": false
}
}
}