-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
74 lines (74 loc) · 2.55 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
65
66
67
68
69
70
71
72
73
74
{
"name": "yumemi-inc/google-iap-laravel",
"description": "Authentication guard on Laravel for verifying requests from Google IAP (Identity-Aware Proxy).",
"type": "library",
"license": "MIT",
"minimum-stability": "dev",
"prefer-stable": true,
"authors": [
{
"name": "Natsuki Ikeguchi",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1",
"google/auth": "^1.37",
"illuminate/auth": "^9|^10|^11",
"illuminate/contracts": "^9|^10|^11",
"illuminate/http": "^9|^10|^11",
"illuminate/support": "^9|^10|^11",
"kelvinmo/simplejwt": "~0.7.0 || ~0.8.0 || dev-master || ~0.9.0 || dev-master",
"symfony/cache": "^6.4 || ^7.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.51",
"nunomaduro/larastan": "^2.9",
"orchestra/testbench": "^8.21",
"phpstan/extension-installer": "^1.3",
"quartetcom/static-analysis-kit": "~8.1.22"
},
"autoload": {
"psr-4": {
"YumemiInc\\GoogleIapLaravel\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"YumemiInc\\GoogleIapLaravel\\": "tests/"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"quartetcom/static-analysis-kit": true,
"phpstan/extension-installer": true
}
},
"extra": {
"laravel": {
"providers": [
"YumemiInc\\GoogleIapLaravel\\Providers\\GoogleIapServiceProvider"
]
}
},
"scripts": {
"analyse": "@php static-analysis-kit analyse",
"fix": "@php static-analysis-kit fix",
"fix:all": "@php static-analysis-kit fix --risky --rector",
"fix:rector": "@php static-analysis-kit fix --rector",
"fix:risky": "@php static-analysis-kit fix --risky",
"test": "# To run your tests using this command, you must define your test script in composer.json.",
"post-autoload-dump": [
"@php vendor/bin/testbench package:discover --ansi"
]
},
"scripts-descriptions": {
"analyse": "Analyses code in this project fully.",
"fix": "Tries to fix code in this project automatically.",
"fix:all": "Tries to fix code in this project automatically fully.",
"fix:rector": "Tries to fix code in this project automatically with rector enabled.",
"fix:risky": "Tries to fix code in this project automatically with risky rules.",
"test": "Runs the tests."
}
}