-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
41 lines (40 loc) · 1006 Bytes
/
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
{
"name": "sun-asterisk/laravel-2fa",
"description": "Two factor authentication for laravel",
"type": "library",
"license": "MIT",
"require": {
"php": ">=7.0",
"illuminate/config": "~5.0|~5.7.0|~5.8.0|^6.0",
"illuminate/database": "~5.0|~5.7.0|~5.8.0|^6.0",
"illuminate/support": "~5.0|~5.7.0|~5.8.0|^6.0",
"illuminate/http": "~5.0|~5.7.0|~5.8.0|^6.0",
"illuminate/routing": "~5.0|~5.7.0|~5.8.0|^6.0"
},
"require-dev": {
"mockery/mockery": "^1.2",
"phpunit/phpunit": "^7.5"
},
"autoload": {
"psr-4": {
"SunAsterisk\\Laravel2FA\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SunAsterisk\\Laravel2FA\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true
},
"prefer-stable": true,
"extra": {
"laravel": {
"providers": [
],
"aliases": {
}
}
}
}