This commit is contained in:
2023-06-16 21:44:35 -04:00
parent b553ac403e
commit adad8cea81
18 changed files with 360 additions and 0 deletions

22
app/composer.json Normal file
View File

@ -0,0 +1,22 @@
{
"name": "provm/remote_ip",
"type": "project",
"require": {
"guzzlehttp/guzzle": "^7.7",
"monolog/monolog": "^3.3",
"php-di/php-di": "^7.0",
"symfony/console": "^6.3",
"thecodingmachine/safe": "^2.5"
},
"require-dev": {
"phpunit/phpunit": "^10.2"
},
"autoload": {
"psr-4": {
"ProVM\\": "common/"
}
},
"config": {
"sort-packages": true
}
}