-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
62 lines (62 loc) · 1.54 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
{
"name": "minvws/horsebattery-laravel",
"description": "A Laravel package for the horsebattery password generator",
"type": "library",
"keywords": [
"laravel",
"security",
"password"
],
"license": "EUPL-1.2",
"autoload": {
"psr-4": {
"MinVWS\\HorseBattery\\Laravel\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"MinVWS\\HorseBattery\\Laravel\\Tests\\": "tests"
}
},
"authors": [
{
"name": "Pauline Vos",
"email": "[email protected]"
},
{
"name": "Joshua Thijssne",
"email": "[email protected]"
}
],
"extra": {
"laravel": {
"providers": [
"MinVWS\\HorseBattery\\Laravel\\HorseBatteryServiceProvider"
],
"aliases": {
"PasswordGenerator": "MinVWS\\HorseBattery\\Laravel\\Facades\\PasswordGenerator"
}
}
},
"require": {
"php": ">=8.1",
"minvws/horsebattery": "^1.1.3",
"illuminate/support": "^10.0|^11.0"
},
"require-dev": {
"orchestra/testbench": "^8.0|^9.0",
"phpunit/phpunit": "^9.5",
"vimeo/psalm": "^5.0",
"phpstan/phpstan": "^1.0",
"squizlabs/php_codesniffer": "^3.6",
"mockery/mockery": "^1.4.3"
},
"scripts": {
"test": [
"vendor/bin/phpunit",
"vendor/bin/phpstan analyse",
"vendor/bin/psalm",
"vendor/bin/phpcs"
]
}
}