-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
40 lines (40 loc) · 1010 Bytes
/
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
{
"name": "kisscool/simple-haveibeenpwned",
"description": "A very simple class to check your password safety against 'Have I Been Pwned' API.",
"homepage": "https://github.com/kisscool-fr/simple-haveibeenpwned",
"license": "MIT",
"authors": [
{
"name": "KisSCoOl",
"email": "[email protected]",
"role": "Developer"
}
],
"config": {
"platform": {
"php": "7.1"
},
"sort-packages": true
},
"autoload": {
"psr-4": {
"HIBP\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"HIBP\\": "tests/"
}
},
"require": {
"php": "^7.1",
"guzzlehttp/guzzle": "^6.3",
"hirak/prestissimo": "^0.3.9"
},
"require-dev": {
"roave/security-advisories": "dev-master",
"phpunit/phpunit": "^7.5",
"friendsofphp/php-cs-fixer": "^2.15",
"phpstan/phpstan": "^0.11"
}
}