-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
45 lines (45 loc) · 1.1 KB
/
composer.json
File metadata and controls
45 lines (45 loc) · 1.1 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
{
"name": "gamewith/gamewith-oidc-sdk",
"version": "1.0.0",
"authors": [
{
"name": "GameWith",
"email": "service-dev@gamewith.co.jp"
}
],
"scripts": {
"test": "phpunit",
"lint": "php-cs-fixer fix --dry-run --diff",
"lintfix": "php-cs-fixer fix --diff --config .php-cs-fixer.php",
"stan": "phpstan analyse -c phpstan.neon.dist"
},
"require": {
"php": ">=7.0",
"ext-json": "*",
"ext-curl": "*",
"ext-openssl": "*",
"guzzlehttp/guzzle": "^6|^7",
"phpseclib/phpseclib": "^3.0"
},
"autoload": {
"psr-4": {
"GameWith\\Oidc\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"GameWith\\Oidc\\Tests\\": "tests/"
}
},
"require-dev": {
"phpunit/phpunit": "^6|^7|^8|^9",
"mockery/mockery": "^1",
"yoast/phpunit-polyfills": "^1",
"bamarni/composer-bin-plugin": "^1"
},
"config": {
"allow-plugins": {
"bamarni/composer-bin-plugin": true
}
}
}