forked from Tim-R/laravel-uls
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
45 lines (45 loc) · 1.03 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
{
"name": "vatusa/laravel-uls",
"description": "Adds ULS authentication support to your application",
"keywords": ["laravel", "vatusa", "uls"],
"license": "GPL-3.0+",
"authors": [
{
"name": "Daniel A. Hawton",
"email": "daniel@hawton.com"
}
],
"require": {
"php": ">=7.1.0",
"web-token/jwt-core": "^1.0",
"web-token/jwt-key-mgmt": "^1.0",
"web-token/jwt-signature": "^1.0",
"web-token/jwt-checker": "^1.0",
"namshi/jose": "^7.0",
"illuminate/support": "5.3.x|5.4.x|5.5.x"
},
"autoload": {
"psr-4": {
"VATUSA\\Uls\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"VATUSA\\Uls\\UlsServiceProvider"
]
}
},
"require-dev": {
"phpunit/phpunit": "^4.8|^5.2",
"orchestra/testbench": "3.x",
"squizlabs/php_codesniffer": "^2.3"
},
"scripts": {
"test": "phpunit",
"check-style": "phpcs -p --standard=PSR2 src/",
"fix-style": "phpcbf -p --standard=PSR2 src/"
},
"minimum-stability": "dev",
"prefer-stable": true
}