-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
65 lines (65 loc) · 1.62 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
{
"name": "shipsaas/laravel-jwks",
"type": "library",
"version": "1.0.0",
"description": "Manage JSON Web Key Sets (JWKS) for your Laravel applications",
"keywords": [
"laravel library",
"laravel jwks",
"laravel json web key sets",
"laravel json web key",
"jwks",
"auth",
"microservice",
"laravel"
],
"authors": [
{
"name": "Phat Tran (Seth Phat)",
"email": "[email protected]",
"homepage": "https://github.com/sethsandaru",
"role": "Sr.SWE"
}
],
"license": "MIT",
"require": {
"php": "^8.1|^8.2",
"laravel/framework": "^10|dev-master",
"strobotti/php-jwk": "^1.4"
},
"require-dev": {
"fakerphp/faker": "^v1.20.0",
"mockery/mockery": "^1.5.1",
"phpunit/phpunit": "^10",
"orchestra/testbench": "^8",
"phpunit/php-code-coverage": "^10",
"friendsofphp/php-cs-fixer": "^3.10"
},
"extra": {
"laravel": {
"providers": [
"ShipSaasLaravelJwks\\ShipSaasLaravelJwksServiceProvider"
]
}
},
"autoload": {
"psr-4": {
"ShipSaasLaravelJwks\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ShipSaasLaravelJwks\\Tests\\": "tests/"
}
},
"scripts": {
"test-coverage": [
"@php vendor/bin/phpunit --coverage-clover coverage.xml"
],
"test": [
"@php vendor/bin/phpunit"
]
},
"minimum-stability": "dev",
"prefer-stable": true
}