Initial commit

This commit is contained in:
Rekryt
2024-08-30 15:22:24 +03:00
commit 171e449744
46 changed files with 4638 additions and 0 deletions

29
composer.json Normal file
View File

@@ -0,0 +1,29 @@
{
"name": "rekryt/iplist",
"authors": [
{
"name": "Rekryt",
"homepage": "https://github.com/rekryt"
}
],
"require": {
"opencck/server": "v1.0.0",
"amphp/dns": "^2.2",
"vlucas/phpdotenv": "^5.5"
},
"autoload": {
"files": [
"src/functions.php"
],
"psr-4": {
"OpenCCK\\": [
"src/"
]
}
},
"config": {
"allow-plugins": {
"php-http/discovery": true
}
}
}