diff --git a/README.md b/README.md index 05d2e45..0377fd0 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ Laravel-USPS is a composer package that allows you to integrate the USPS Address / Shipping API. This package is ported from @author Vincent Gabriel https://github.com/VinceG/USPS-php-api - Requires a valid USPS API Username - - Tested on Laravel 6 + - Tested on Laravel 7 ## Installation @@ -44,11 +44,11 @@ The only method completed for Laravel is the `Usps::validate` which is defined i ```php = 5.4 configured with the following extensions: +- PHP >= 7.2.5 configured with the following extensions: - cURL - USPS API Username @@ -111,9 +117,3 @@ Requirements Authors ======= - Vincent Gabriel (Original PHP-Wrapper) - -Contributors -============ -@pdbreen -@bredmor -@scs-ben diff --git a/composer.json b/composer.json index 67b000f..6abe3de 100644 --- a/composer.json +++ b/composer.json @@ -1,12 +1,17 @@ { "name": "johnpaulmedina/laravel-usps", - "description": "USPS API for Laravel 6", + "description": "USPS API for Laravel 7", "type": "library", - "keywords": ["usps","laravel","laravel6","laravel usps"], + "keywords": [ + "usps", + "laravel", + "laravel7", + "laravel usps" + ], "authors": [ { "name": "John Paul Medina", - "email": "medina.jpaul@gmail.com" + "email": "jp@leadtrust.io" }, { "name": "Vincent Gabriel", @@ -16,8 +21,8 @@ "homepage":"https://github.com/johnpaulmedina/laravel-usps/", "license": "MIT", "require": { - "php": "^7.2", - "illuminate/support": "^6.0" + "php": "^7.2.5", + "illuminate/support": "^7.0" }, "autoload": { "psr-4": { diff --git a/src/.DS_Store b/src/.DS_Store index 0a60c23..6515d6d 100644 Binary files a/src/.DS_Store and b/src/.DS_Store differ diff --git a/src/Usps/Address.php b/src/Address.php similarity index 100% rename from src/Usps/Address.php rename to src/Address.php diff --git a/src/Usps/AddressVerify.php b/src/AddressVerify.php similarity index 100% rename from src/Usps/AddressVerify.php rename to src/AddressVerify.php diff --git a/src/Usps/CityStateLookup.php b/src/CityStateLookup.php similarity index 100% rename from src/Usps/CityStateLookup.php rename to src/CityStateLookup.php diff --git a/src/Usps/Exceptions/UspsException.php b/src/Exceptions/UspsException.php similarity index 100% rename from src/Usps/Exceptions/UspsException.php rename to src/Exceptions/UspsException.php diff --git a/src/Usps/Exceptions/UspsTrackConfirmException.php b/src/Exceptions/UspsTrackConfirmException.php similarity index 100% rename from src/Usps/Exceptions/UspsTrackConfirmException.php rename to src/Exceptions/UspsTrackConfirmException.php diff --git a/src/Usps/Facades/Usps.php b/src/Facades/Usps.php similarity index 100% rename from src/Usps/Facades/Usps.php rename to src/Facades/Usps.php diff --git a/src/Usps/FirstClassServiceStandards.php b/src/FirstClassServiceStandards.php similarity index 100% rename from src/Usps/FirstClassServiceStandards.php rename to src/FirstClassServiceStandards.php diff --git a/src/Usps/InternationalLabel.php b/src/InternationalLabel.php similarity index 100% rename from src/Usps/InternationalLabel.php rename to src/InternationalLabel.php diff --git a/src/Usps/OpenDistributeLabel.php b/src/OpenDistributeLabel.php similarity index 100% rename from src/Usps/OpenDistributeLabel.php rename to src/OpenDistributeLabel.php diff --git a/src/Usps/PriorityLabel.php b/src/PriorityLabel.php similarity index 100% rename from src/Usps/PriorityLabel.php rename to src/PriorityLabel.php diff --git a/src/Usps/PriorityMailServiceStandards.php b/src/PriorityMailServiceStandards.php similarity index 100% rename from src/Usps/PriorityMailServiceStandards.php rename to src/PriorityMailServiceStandards.php diff --git a/src/Usps/Rate.php b/src/Rate.php similarity index 100% rename from src/Usps/Rate.php rename to src/Rate.php diff --git a/src/Usps/RatePackage.php b/src/RatePackage.php similarity index 100% rename from src/Usps/RatePackage.php rename to src/RatePackage.php diff --git a/src/Usps/ServiceDeliveryCalculator.php b/src/ServiceDeliveryCalculator.php similarity index 100% rename from src/Usps/ServiceDeliveryCalculator.php rename to src/ServiceDeliveryCalculator.php diff --git a/src/Usps/TrackConfirm.php b/src/TrackConfirm.php similarity index 100% rename from src/Usps/TrackConfirm.php rename to src/TrackConfirm.php diff --git a/src/Usps/USPSBase.php b/src/USPSBase.php similarity index 100% rename from src/Usps/USPSBase.php rename to src/USPSBase.php diff --git a/src/Usps/Usps.php b/src/Usps.php similarity index 100% rename from src/Usps/Usps.php rename to src/Usps.php diff --git a/src/Usps/.DS_Store b/src/Usps/.DS_Store deleted file mode 100644 index 923490b..0000000 Binary files a/src/Usps/.DS_Store and /dev/null differ diff --git a/src/Usps/UspsServiceProvider.php b/src/UspsServiceProvider.php similarity index 100% rename from src/Usps/UspsServiceProvider.php rename to src/UspsServiceProvider.php diff --git a/src/Usps/XML2Array.php b/src/XML2Array.php similarity index 100% rename from src/Usps/XML2Array.php rename to src/XML2Array.php diff --git a/src/Usps/XMLParser.php b/src/XMLParser.php similarity index 100% rename from src/Usps/XMLParser.php rename to src/XMLParser.php diff --git a/src/Usps/ZipCodeLookup.php b/src/ZipCodeLookup.php similarity index 100% rename from src/Usps/ZipCodeLookup.php rename to src/ZipCodeLookup.php