-
Notifications
You must be signed in to change notification settings - Fork 118
/
composer.json
52 lines (52 loc) · 1.36 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
{
"name": "jrean/laravel-user-verification",
"description": "User Email Verification For Laravel",
"keywords": [
"laravel",
"framework",
"user verification",
"email verification",
"user activation",
"email activation"
],
"license": "MIT",
"authors": [
{
"name": "Jean Ragouin",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.2.0",
"illuminate/support": "^6.0 || ^7.0 || ^8.0|^9.0|^10.0|^11.0"
},
"autoload": {
"psr-4": {
"Jrean\\UserVerification\\": "src/"
}
},
"config": {
"preferred-install": "dist"
},
"minimum-stability": "dev",
"prefer-stable": true,
"require-dev": {
"phpunit/phpunit": "^7.0|^8.0|^9.0|^10.0|^11.0",
"fzaninotto/faker": "^1.9|^1.5",
"mockery/mockery": "^1.3",
"satooshi/php-coveralls": "^2.0|^1.0",
"friendsofphp/php-cs-fixer": "^1.12|^3.5",
"sllh/php-cs-fixer-styleci-bridge": "^2.1"
},
"scripts": [],
"extra": {
"laravel": {
"providers": [
"Jrean\\UserVerification\\UserVerificationServiceProvider"
],
"aliases": {
"UserVerification": "Jrean\\UserVerification\\Facades\\UserVerification"
}
}
}
}