generated from spatie/package-skeleton-laravel
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
59 lines (59 loc) · 1.8 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
{
"name": "vanthao03596/laravel-password-history",
"description": "Keep a password history of your users to prevent them from reusing the same password like Facebook, Google",
"keywords": [
"vanthao03596",
"laravel-password-history"
],
"homepage": "https://github.com/vanthao03596/laravel-password-history",
"license": "MIT",
"authors": [
{
"name": "phamthao",
"email": "phamthao03596@gmail.com",
"role": "Developer"
}
],
"require": {
"php": "^7.3 || ^8.0",
"illuminate/contracts": "^6.0 || ^7.0 || ^8.0",
"illuminate/database": "^6.0 || ^7.0 || ^8.0",
"vanthao03596/laravel-package-tools": "^2.0"
},
"require-dev": {
"laravel/legacy-factories": "^1.0.4",
"nunomaduro/collision": "^3.0 || ^5.3",
"orchestra/testbench": "^4.8 || ^5.2 || ^6.0",
"spatie/test-time": "^1.2",
"vimeo/psalm": "^4.4",
"phpunit/phpunit": "^9.3"
},
"autoload": {
"psr-4": {
"Vanthao03596\\LaravelPasswordHistory\\": "src",
"Vanthao03596\\LaravelPasswordHistory\\Database\\Factories\\": "database/factories"
}
},
"autoload-dev": {
"psr-4": {
"Vanthao03596\\LaravelPasswordHistory\\Tests\\": "tests"
}
},
"scripts": {
"psalm": "vendor/bin/psalm",
"test": "./vendor/bin/testbench package:test",
"test-coverage": "vendor/bin/phpunit --coverage-html coverage"
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"Vanthao03596\\LaravelPasswordHistory\\LaravelPasswordHistoryServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}