-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
45 lines (45 loc) · 1.08 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
{
"name": "minvws/horsebattery",
"description": "A password generator inspired by https://xkcd.com/936/",
"type": "library",
"keywords": [
"security",
"password",
"generator"
],
"license": "EUPL-1.2",
"autoload": {
"psr-4": {
"Minvws\\HorseBattery\\": "src/"
}
},
"authors": [
{
"name": "Joshua Thijssen",
"email": "[email protected]"
},
{
"name": "Pauline Vos",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1"
},
"require-dev": {
"orchestra/testbench": "^6.0",
"phpunit/phpunit": "^9.5",
"vimeo/psalm": "^4.4 || ^5.0",
"phpstan/phpstan": "^0.12.80 || ^1.0.0 || ^2.0.0",
"squizlabs/php_codesniffer": "^3.6",
"mockery/mockery": "^1.4.3"
},
"scripts": {
"test": [
"vendor/bin/phpunit",
"vendor/bin/phpstan analyse",
"vendor/bin/psalm --show-info=true --no-progress --no-cache",
"vendor/bin/phpcs -p"
]
}
}