Skip to content

Commit

Permalink
Merge pull request #13 from johnpaulmedina/7.0
Browse files Browse the repository at this point in the history
L7.0 Support
  • Loading branch information
johnpaulmedina authored Jun 23, 2020
2 parents 784341b + 987ded7 commit 207d3d6
Show file tree
Hide file tree
Showing 25 changed files with 22 additions and 17 deletions.
24 changes: 12 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -44,11 +44,11 @@ The only method completed for Laravel is the `Usps::validate` which is defined i
```php
<?php

namespace app\Http\Controllers;
use app\Http\Requests;
use app\Http\Controllers\Controller;
namespace App\Http\Controllers;

use App\Http\Requests;
use Illuminate\Support\Facades\Request;
use Usps;
use Johnpaulmedina\Usps;

class USPSController extends Controller
{
Expand Down Expand Up @@ -83,6 +83,12 @@ class USPSController extends Controller
}
```

Contributors
============
@pdbreen
@bredmor
@scs-ben

@VinceG Original README.MD

USPS PHP API
Expand All @@ -103,17 +109,11 @@ This wrapper allows you to perform some basic calls to the USPS api. Some of the
Requirements
============

- PHP >= 5.4 configured with the following extensions:
- PHP >= 7.2.5 configured with the following extensions:
- cURL
- USPS API Username


Authors
=======
- Vincent Gabriel <http://vadimg.com> (Original PHP-Wrapper)

Contributors
============
@pdbreen
@bredmor
@scs-ben
15 changes: 10 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
@@ -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": "[email protected]"
"email": "[email protected]"
},
{
"name": "Vincent Gabriel",
Expand All @@ -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": {
Expand Down
Binary file modified src/.DS_Store
Binary file not shown.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Binary file removed src/Usps/.DS_Store
Binary file not shown.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 207d3d6

Please sign in to comment.