-
Notifications
You must be signed in to change notification settings - Fork 53
/
Copy pathcomposer.json
67 lines (67 loc) · 2.01 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
{
"name": "black-bits/laravel-cognito-auth",
"description": "An auth provider for Laravel for AWS Cognito.",
"keywords": [
"BlackBits",
"AWS Cognito",
"Auth Provider"
],
"homepage": "https://github.com/black-bits/laravel-cognito-auth",
"license": "MIT",
"authors": [
{
"name": "Oliver Heck",
"email": "[email protected]",
"homepage": "https://blackbits.io",
"role": "Developer"
},
{
"name": "Andreas Przywara",
"email": "[email protected]",
"homepage": "https://blackbits.io",
"role": "Developer"
},
{
"name": "Adrian Raeuchle",
"email": "[email protected]",
"homepage": "https://blackbits.io",
"role": "Developer"
}
],
"require": {
"php": "^7.1|^8.0",
"illuminate/support": "5.1.*|5.2.*|5.3.*|5.4.*|5.5.*|5.6.*|5.7.*|5.8.*|6.*|7.*|8.*|^9.0",
"illuminate/config": "5.1.*|5.2.*|5.3.*|5.4.*|5.5.*|5.6.*|5.7.*|5.8.*|6.*|7.*|8.*|^9.0",
"illuminate/auth": "5.1.*|5.2.*|5.3.*|5.4.*|5.5.*|5.6.*|5.7.*|5.8.*|6.*|7.*|8.*|^9.0",
"illuminate/http": "5.1.*|5.2.*|5.3.*|5.4.*|5.5.*|5.6.*|5.7.*|5.8.*|6.*|7.*|8.*|^9.0",
"aws/aws-sdk-php": "^3.61"
},
"require-dev": {
"larapack/dd": "^1.0",
"phpunit/phpunit": "^7.0|^9.5.10"
},
"autoload": {
"psr-4": {
"BlackBits\\LaravelCognitoAuth\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"BlackBits\\LaravelCognitoAuth\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-coverage": "vendor/bin/phpunit --coverage-html coverage"
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"BlackBits\\LaravelCognitoAuth\\CognitoAuthServiceProvider"
]
}
}
}