-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
65 lines (65 loc) · 2.39 KB
/
composer.json
File metadata and controls
65 lines (65 loc) · 2.39 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "eonx-com/easy-api-token",
"description": "Make your API accept multiple authentication strategies in a convenient way (Basic, ApiKey, JWT, ...)",
"type": "symfony-bundle",
"license": "MIT",
"require": {
"php": "^8.2",
"ext-openssl": "*",
"eonx-com/easy-utils": "^6.22",
"nette/utils": "^4.0",
"psr/log": "^3.0",
"symfony/dependency-injection": "^7.2",
"symfony/http-foundation": "^7.2",
"symfony/http-kernel": "^7.2",
"symfony/security-bundle": "^7.2",
"symfony/security-http": "^7.2",
"symfony/service-contracts": "^3.5"
},
"require-dev": {
"auth0/auth0-php": "^8.17",
"firebase/php-jwt": "^7.0",
"laravel/lumen-framework": "^11.0",
"nyholm/psr7": "^1.8",
"paragonie/random_compat": "^2.0",
"phpseclib/phpseclib": "^3.0.36",
"phpunit/phpunit": "^10.2|^11.4|^12.4",
"psr-discovery/discovery": "^1.0.2",
"symfony/cache": "^7.2",
"symfony/http-client": "^7.2"
},
"autoload": {
"psr-4": {
"EonX\\EasyApiToken\\": "src",
"EonX\\EasyApiToken\\Bundle\\": "bundle",
"EonX\\EasyApiToken\\Laravel\\": "laravel"
}
},
"autoload-dev": {
"psr-4": {
"EonX\\EasyApiToken\\Tests\\": "tests",
"EonX\\EasyApiToken\\Tests\\Unit\\": "tests/Unit/src",
"EonX\\EasyApiToken\\Tests\\Unit\\Bundle\\": "tests/Unit/bundle",
"EonX\\EasyApiToken\\Tests\\Unit\\Laravel\\": "tests/Unit/laravel"
}
},
"suggest": {
"auth0/auth0-php": "To use the Auth0 JWT driver to decode/encode tokens",
"firebase/php-jwt": "To use the Auth0, Amazon Cognito, or Firebase JWT driver to decode/encode tokens",
"illuminate/contracts": "To use this package with Laravel/Lumen",
"illuminate/support": "To use this package with Laravel/Lumen",
"phpseclib/phpseclib": "To use the Amazon Cognito JWT driver to decode/encode tokens",
"symfony/cache": "To use the Amazon Cognito JWT driver to decode/encode tokens",
"symfony/http-client": "To use the Amazon Cognito JWT driver to decode/encode tokens"
},
"config": {
"allow-plugins": {
"php-http/discovery": true
}
},
"extra": {
"branch-alias": {
"dev-master": "6.22-dev"
}
}
}