This repository was archived by the owner on Jan 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
53 lines (53 loc) · 1.42 KB
/
composer.json
File metadata and controls
53 lines (53 loc) · 1.42 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
{
"name": "kleijnweb/jwt-bundle",
"type": "symfony-bundle",
"authors": [
{
"name": "John Kleijn",
"email": "john@kleijnweb.nl",
"homepage": "http://www.kleijnweb.nl"
}
],
"license": "LGPL-3.0",
"description": "Symfony JWT authentication with support for asymmetric keys and externally loaded secrets",
"autoload": {
"psr-4": {
"KleijnWeb\\JwtBundle\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"KleijnWeb\\JwtBundle\\Tests\\": "tests/unit",
"KleijnWeb\\JwtBundle\\Tests\\Functional\\": "tests/functional"
},
"files": [
"tests/functional/App/app/TestKernel.php"
]
},
"require": {
"php": "^7.0.0",
"symfony/dependency-injection": ">=2.8.30",
"symfony/config": ">=2.8.30",
"symfony/event-dispatcher": ">=2.8.30",
"symfony/http-foundation": ">=2.8.30",
"symfony/http-kernel": ">=2.8.30",
"symfony/security": ">=2.8.30",
"symfony/yaml": ">=2.8.30",
"symfony/finder": ">=2.8.30",
"symfony/security-bundle": ">=2.8.30",
"symfony/var-dumper": ">=2.8.30"
},
"require-dev": {
"phpunit/phpunit": "^6.5",
"symfony/framework-bundle": ">=2.8.30",
"symfony/browser-kit": ">=2.8.30",
"symfony/form": ">=2.8.30",
"satooshi/php-coveralls": "<1.0",
"mikey179/vfsStream": "^1.6",
"symfony/monolog-bundle": "^3.1",
"squizlabs/php_codesniffer": "^3.2"
},
"config": {
"bin-dir": "bin"
}
}