This repository has been archived by the owner on Oct 1, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
72 lines (72 loc) · 2.1 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
{
"name": "arkecosystem/fortify",
"description": "Authentication Scaffolding for Laravel. Powered by Laravel Fortify.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Brian Faust",
"email": "hello@basecode.sh"
}
],
"require": {
"php": "^8.0",
"arkecosystem/ui": "^5.0",
"danharrin/livewire-rate-limiting": "^0.3.0",
"illuminate/support": "^8.0",
"jenssegers/agent": "^2.6",
"laravel/fortify": "^1.8",
"livewire/livewire": "^2.6",
"pragmarx/google2fa-laravel": "^1.3",
"spatie/laravel-medialibrary": "^9.7",
"spatie/laravel-newsletter": "^4.10",
"spatie/laravel-personal-data-export": "^3.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"graham-campbell/analyzer": "^3.0",
"guzzlehttp/guzzle": "^7.3",
"mockery/mockery": "^1.3",
"nunomaduro/larastan": "^0.6",
"nunomaduro/laravel-mojito": "^0.2",
"orchestra/testbench": "^6.9",
"pestphp/pest": "^1.0",
"pestphp/pest-plugin-faker": "^1.0",
"pestphp/pest-plugin-laravel": "^1.0",
"pestphp/pest-plugin-livewire": "^1.0",
"pestphp/pest-plugin-parallel": "^0.3.1",
"phpunit/phpunit": "^9.5",
"teamtnt/laravel-scout-tntsearch-driver": "^10.0"
},
"autoload": {
"psr-4": {
"ARKEcosystem\\Fortify\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/",
"Database\\Factories\\": "database/factories/"
}
},
"extra": {
"laravel": {
"providers": [
"ARKEcosystem\\Fortify\\FortifyServiceProvider"
]
}
},
"scripts": {
"format": [
"vendor/bin/php-cs-fixer fix"
],
"test": [
"./vendor/bin/pest --coverage --min=100 --coverage-html=.coverage --coverage-clover=coverage.xml"
]
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true
}
}