-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
43 lines (43 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
41
42
43
{
"name": "nguyenanhung/basic-firewall",
"description": "PHP Basic Firewall",
"keywords": [
"firewall",
"php"
],
"homepage": "https://github.com/nguyenanhung/basic-firewall",
"license": "GPL-3.0",
"minimum-stability": "stable",
"authors": [
{
"name": "Nguyen An Hung",
"email": "dev@nguyenanhung.com",
"homepage": "https://nguyenanhung.com",
"role": "Developer"
}
],
"require": {
"php": ">=7.0",
"ext-pdo": "*",
"nguyenanhung/ip-helper": ">=2.0",
"tramtro/m6web-firewall": ">=1.0"
},
"require-dev": {
"nguyenanhung/filesystem-helper": "^2.0",
"nguyenanhung/nanoid-helper": "^2.0",
"monolog/monolog": ">=1.26",
"kint-php/kint": ">=3.0"
},
"autoload": {
"psr-4": {
"nguyenanhung\\PhpBasicFirewall\\": "src/"
},
"files": [
"helpers/helpers.php"
]
},
"suggest": {
"ext-pdo": "For Check Database Connection",
"ext-pdo_mysql": "For Check Database Connection with MySQL"
}
}