-
Notifications
You must be signed in to change notification settings - Fork 43
/
composer.json
74 lines (73 loc) · 1.98 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
70
71
72
73
74
{
"name": "devdojo/auth",
"description": "The auth package to make authentication in your laravel applications easy to use.",
"keywords": [
"devdojo",
"auth"
],
"homepage": "https://github.com/devdojo/auth",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Tony Lea",
"email": "tony@devdojo.com",
"role": "Developer"
}
],
"require": {
"php": "^7.4|^8.0|^8.1|^8.2",
"illuminate/support": "^8.0|^9.0|^10.0|^11.0",
"laravel/folio": "^1.0",
"livewire/livewire": "^3.0",
"livewire/volt": "^1.0",
"codeat3/blade-phosphor-icons": "^2.0",
"devdojo/config-writer": "^0.0.7",
"laravel/socialite": "^5.0",
"calebporzio/sushi": "^2.5",
"pragmarx/google2fa": "^8.0",
"bacon/bacon-qr-code": "^3.0"
},
"require-dev": {
"laravel/pint": "^1.15",
"orchestra/testbench": "^9.0",
"pestphp/pest": "^2.34",
"pestphp/pest-plugin-laravel": "^2.4",
"larastan/larastan": "^2.0",
"phpstan/phpstan": "^1.11",
"laravel/dusk": "^8.2",
"protonemedia/laravel-dusk-fakes": "^1.6",
"alebatistella/duskapiconf": "^1.2"
},
"autoload": {
"psr-4": {
"Devdojo\\Auth\\": "src",
"Devdojo\\Auth\\Tests\\": "tests"
}
},
"autoload-dev": {
"psr-4": {
"Devdojo\\Auth\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-coverage": "vendor/bin/phpunit --coverage-html coverage"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"extra": {
"laravel": {
"providers": [
"Devdojo\\Auth\\AuthServiceProvider"
],
"aliases": {
"Auth": "Devdojo\\Auth\\AuthFacade"
}
}
}
}