-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
48 lines (48 loc) · 1.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
{
"name": "dragonbe/hibp",
"description": "A package integrating Troy Hunt's HaveIBeenPawnd API for password checking.",
"type": "library",
"require": {
"php": ">= 7.2",
"guzzlehttp/guzzle": "^6.3",
"psr/http-message": "^1.0",
"psr/http-client": "^1.0",
"ricardofiorani/guzzle-psr18-adapter": "^1.0",
"psr/http-factory": "^1.0"
},
"autoload": {
"psr-4": {
"Dragonbe\\Hibp\\": "src/"
}
},
"require-dev": {
"phpunit/phpunit": "^7.2",
"squizlabs/php_codesniffer": "^3.2",
"infection/infection": "^0.8.2"
},
"autoload-dev": {
"psr-4": {
"Dragonbe\\Test\\Hibp\\": "tests/"
}
},
"license": "MIT",
"authors": [
{
"name": "Michelangelo van Dam",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"scripts": {
"check": [
"@cs-check",
"@test",
"@infection"
],
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"test": "phpunit --colors=always",
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml",
"infection": "infection --only-covered"
}
}