This repository has been archived by the owner on Feb 17, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
composer.json
69 lines (68 loc) · 1.9 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
68
69
{
"name": "darkghosthunter/laraguard",
"description": "On-premises 2FA Authentication for all your users out-of-the-box",
"keywords": [
"darkghosthunter",
"laraguard",
"laravel",
"authentication",
"2fa",
"two-factor",
"authentication"
],
"homepage": "https://github.com/darkghosthunter/laraguard",
"minimum-stability": "dev",
"prefer-stable": true,
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Italo Israel Baeza Cabrera",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^8.0|^8.1",
"ext-json": "*",
"bacon/bacon-qr-code": "^2.0",
"paragonie/constant_time_encoding": "^2.4",
"illuminate/config": "^8.83|^9.0",
"illuminate/validation": "^8.83|^9.0",
"illuminate/database": "^8.83|^9.0",
"illuminate/support": "^8.83|^9.0",
"illuminate/http": "^8.83|^9.0",
"illuminate/auth": "^8.83|^9.0"
},
"require-dev": {
"doctrine/dbal": "^3.1",
"mockery/mockery": "^1.4.4",
"orchestra/testbench": "^6.27|^7.0|^6.0",
"phpunit/phpunit": "^9.5.8"
},
"autoload": {
"psr-4": {
"DarkGhostHunter\\Laraguard\\": "src",
"Database\\Factories\\DarkGhostHunter\\Laraguard\\Eloquent\\": "database/factories"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit --coverage-clover build/logs/clover.xml",
"test-coverage": "vendor/bin/phpunit --coverage-html coverage"
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"DarkGhostHunter\\Laraguard\\LaraguardServiceProvider"
]
}
}
}