-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
951a7a1
commit 090679b
Showing
4 changed files
with
38 additions
and
5 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# USPS Address Validator v2 Changelog | ||
|
||
## New Features | ||
|
||
* Updated to use the very latest API v3 from USPS | ||
|
||
## Breaking changes | ||
|
||
* The minimum required PHP version changed from PHP 5 to PHP 7.4 | ||
|
||
## Thanks | ||
To contributors, be it with PRs, reporting issues or supporting otherwise. | ||
|
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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
{ | ||
"name": "reddingwebdev/usps_zip_code", | ||
"description": "This class will take a normalized USA address and return the 5 digit zip code", | ||
"minimum-stability": "stable", | ||
"license": "GPL-3.0-or-later", | ||
"authors": [ | ||
{ | ||
"name": "Jason Olson" | ||
} | ||
], | ||
"require": { | ||
"php": ">=7.4", | ||
"ext-curl": "*" | ||
|
||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"RedWebDev\\usps_address_validation\\": "src" | ||
} | ||
} | ||
} |
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