-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
63 lines (63 loc) · 1.86 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
63
{
"name": "firesphere/haveibeenpwnd",
"description": "Check if a user password is found in the Have I Been Pwned database.",
"type": "silverstripe-vendormodule",
"keywords": [
"silverstripe",
"HaveIBeenPwned",
"Password"
],
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Simon 'Firesphere' Erkelens",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.6.0",
"silverstripe/framework": "^4|^5",
"guzzlehttp/guzzle": "^6|^7"
},
"require-dev": {
"scriptfusion/phpunit-immediate-exception-printer": "^1",
"phpunit/phpunit": "^5.7",
"squizlabs/php_codesniffer": "3.*",
"silverstripe/recipe-cms": "^4"
},
"extra": {
"branch-alias": {
"1.x-dev": "1.1.x-dev",
"dev-master": "1.x-dev"
},
"autoload": {
"psr-4": {
"Firesphere\\HaveIBeenPwned\\Extensions": "src/extensions",
"Firesphere\\HaveIBeenPwned\\Controllers": "src/controllers",
"Firesphere\\HaveIBeenPwned\\Models": "src/models",
"Firesphere\\HaveIBeenPwned\\Services": "src/services"
}
},
"autoload-dev": {
"psr-4": {
"Firesphere\\HaveIBeenPwned\\Tests": "tests/unit"
}
},
"project-files-installed": [
"app/.htaccess",
"app/_config.php",
"app/_config/mysite.yml",
"app/src/Page.php",
"app/src/PageController.php"
],
"public-files-installed": [
".htaccess",
"index.php",
"install-frameworkmissing.html",
"install.php",
"web.config"
]
},
"prefer-stable": true,
"minimum-stability": "dev"
}