forked from tronovav/geoip2-update
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: replaced unknown API calls with official MaxMind endpoints
- Loading branch information
1 parent
2838d29
commit b3d23e6
Showing
5 changed files
with
103 additions
and
110 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"name": "tronovav/geoip2-update", | ||
"name": "danielsreichenbach/geoip2-update", | ||
"description": "Update GeoIP2/GeoLite2 databases from your script, program or via composer.", | ||
"keywords": [ | ||
"geoip", | ||
|
@@ -14,22 +14,31 @@ | |
{ | ||
"name": "Andrey Tronov", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"name": "Daniel S. Reichenbach", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"support": { | ||
"email": "[email protected]" | ||
}, | ||
"require": { | ||
"php": ">=5.3", | ||
"php": ">=8.0", | ||
"ext-curl": "*", | ||
"ext-json": "*" | ||
"ext-json": "*", | ||
"composer-plugin-api": "^2.1" | ||
}, | ||
"suggest": { | ||
"ext-zip": "Required for updating the CSV databases." | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"tronovav\\GeoIP2Update\\": "src/" | ||
"danielsreichenbach\\GeoIP2Update\\": "src/" | ||
} | ||
}, | ||
"require-dev": { | ||
"composer/composer": "^2.1", | ||
"symfony/console": "^7.0" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.