Skip to content

Commit 12d7b94

Browse files
committed
Merge branch 'release/v1.0.0'
2 parents a84c95b + 82edb9f commit 12d7b94

File tree

5 files changed

+16
-31
lines changed

5 files changed

+16
-31
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
/.idea
2+
/.git
13
/vendor
24
/.vs
35
composer.lock

README.md

+3-20
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ from the United States Postal Service. This user ID is required to use this pack
1010
### Installation
1111

1212
```
13-
composer require ctwillie/laravel-usps
13+
composer require webreinvent/laravel-usps
1414
```
1515

1616
## Configuration
@@ -51,7 +51,7 @@ The `Address` class handles creating and formatting address data. Pass the const
5151
Below is an example of creating an address and making an api request for validation.
5252

5353
```php
54-
use ctwillie\Usps\Address;
54+
use WebReinvent\Usps\Address;
5555

5656
$address = new Address([
5757
'Address2' => '6406 Ivy Lane',
@@ -65,7 +65,7 @@ $response = $address->validate();
6565
The USPS api supports up to 5 address validations per request. If you need to validate more than one address at a time, pass an array of addresses to the `Address` constructor.
6666

6767
```php
68-
use ctwillie\Usps\Address;
68+
use WebReinvent\Usps\Address;
6969

7070
$address1 = [
7171
'Address2' => '6406 Ivy Lane',
@@ -99,20 +99,3 @@ $json = $address->validate('json');
9999
$object = $address->validate('object');
100100
$string = $address->validate('string');
101101
```
102-
103-
## Contributing
104-
105-
Contributions are always welcomed and will receive full credit.
106-
107-
We accept contributions via Pull Requests on Github.
108-
109-
## Authors
110-
111-
* **Cedric Twillie**
112-
113-
See also the list of [contributors](https://github.com/ctwillie/laravel-usps/graphs/contributors) who participated in this project.
114-
115-
## License
116-
117-
This project is licensed under the MIT License - see the [LICENSE.md](LICENSE.md) file for details
118-

composer.json

+9-9
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,30 @@
11
{
2-
"name": "ctwillie/laravel-usps",
2+
"name": "webreinvent/laravel-usps",
33
"type": "library",
4-
"description": "USPS API wrapper for Laravel 6 framework",
4+
"description": "USPS API wrapper for Laravel 7 framework",
55
"keywords": [
66
"laravel",
7-
"laravel 6",
7+
"laravel 7",
88
"laravel usps",
9-
"laravel 6 usps",
9+
"laravel 7 usps",
1010
"usps",
1111
"usps api"
1212
],
1313
"license": "MIT",
1414
"authors": [
1515
{
16-
"name": "Cedric Twillie",
17-
"email": "ctwillie77@gmail.com"
16+
"name": "WebReinvent",
17+
"email": "we@webreinvent.com"
1818
}
1919
],
2020
"require": {
21-
"illuminate/support": "^6.4",
21+
"illuminate/support": "^7.14.1",
2222
"spatie/array-to-xml": "^2.11",
23-
"guzzlehttp/guzzle": "~6.0"
23+
"guzzlehttp/guzzle": "~^6.3"
2424
},
2525
"autoload": {
2626
"psr-4": {
27-
"ctwillie\\Usps\\": "src/"
27+
"WebReinvent\\Usps\\": "src/"
2828
}
2929
},
3030
"minimum-stability": "dev"

src/API.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace ctwillie\Usps;
3+
namespace WebReinvent\Usps;
44

55
use Illuminate\Support\Facades\App;
66
use Illuminate\Support\Facades\Config;

src/Address.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace ctwillie\Usps;
3+
namespace WebReinvent\Usps;
44

55
/**
66
* This class gathers data for the 'Verify' api route

0 commit comments

Comments
 (0)