-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
70 lines (70 loc) · 1.84 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
64
65
66
67
68
69
70
{
"name": "oyeaussie/phpfirewall",
"description": "PHPFirewall is a tool to allow/block connections to your web resource using IP address. The IP address details are either retrieved from local database or by making API calls to IP2Location.io",
"keywords":
[
"php",
"terminal",
"firewall",
"php firewall",
"ip filter",
"ip address",
"ip2location",
"ip2location.io",
"ip2location api",
"ip2location proxy filter",
"ip address filtering"
],
"authors":
[
{
"name": "Oyeaussie",
"email": "[email protected]",
"homepage": "https://github.com/oyeaussie/PHPFirewall"
}
],
"funding":
[
{
"url": "https://github.com/sponsors/oyeaussie",
"type": "github"
},
{
"url": "https://buymeacoffee.com/oyeaussie",
"type": "other"
}
],
"require":
{
"php": "^7.2.5 || ^8.0",
"ext-json": "*",
"ext-bcmath": "*",
"ext-curl": "*",
"phpterminal/phpterminal": "*",
"phpterminal/phpterminal-modules-firewall": "*",
"phpterminal/phpterminal-plugins-auth": "*",
"symfony/http-foundation" : "*",
"ip2location/ip2location-php": "^9.7",
"ip2location/ip2location-io-php": "^1.0",
"ip2location/ip2proxy-php": "^4.1",
"league/csv": "^9.16.0",
"rakibtg/sleekdb": "*",
"nesbot/carbon": "*",
"guzzlehttp/guzzle": "^7.8",
"league/flysystem": "^3.28",
"monolog/monolog": "^3.7"
},
"autoload":
{
"psr-4":
{
"PHPFirewall\\": "src/"
},
"files":
[
"src/Helpers.php"
]
},
"minimum-stability": "stable",
"license": "MIT"
}