-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
36 lines (36 loc) · 904 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
{
"name": "dzeta/blacklist-alpha",
"description": "List of referrer malicious sites ( spammers/malwares domains ), Blacklist emails and Blacklist IP",
"version": "0.1.0",
"license": "MIT",
"authors": [
{
"name": "DZeta",
"homepage": "https://dzeta.biz/"
}
],
"config": {
"autoloader-suffix": "BlacklistAlpha",
"bin-dir": "blacklist_modules/php/bin",
"vendor-dir": "blacklist_modules/php/libs",
"preferred-install": "dist"
},
"autoload": {
"psr-4": {
"BlacklistAlpha\\": "blacklist_modules/php/classes"
},
"classmap": [
"blacklist_modules/php/classes"
]
},
"require": {
"php": ">=5.6 | >=7.0",
"roave/security-advisories": "dev-master",
"symfony/polyfill-php56": "^1.6.0",
"mso/idna-convert": "^1.1.0"
},
"require-dev": {
"phpunit/phpunit": "~4.6",
"friendsofphp/php-cs-fixer": "~1.7"
}
}