You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+9-9Lines changed: 9 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -24,7 +24,7 @@ There are three important configurations.
24
24
- This setting is set to `true` by default for security reasons. You can override this behavior by setting the `verrifyssl` config setting to `false`. Do this at your own risk.
25
25
26
26
3. Which environment you are working in:
27
-
- The options are 'local' and 'production' which tell the package which API url to use, testing or production respectively. If no configuration is found for `env`, it will default to the environment recognized by laravel. This setting takes precedence over `APP_ENV` from `.env` file.
27
+
- The options are `'local' and 'production'` which tell the package which API url to use, testing or production respectively. If no configuration is found for `env`, it will default to the environment recognized by laravel. This setting takes precedence over `APP_ENV` from your `.env` file.
28
28
29
29
We recommend placing all configuration settings in your `.env` file and use Laravel's `env()` helper function to access these values.
30
30
@@ -41,13 +41,13 @@ In `config/services.php` add these three settings.
41
41
42
42
## Usage
43
43
44
-
The current features offered by this package are listed below.
45
-
-[Address Validation](#Address)
44
+
The current features offered by this package are:
45
+
-[Address Validation](#Address-Validation)
46
46
47
47
48
48
## Address Validation
49
49
50
-
This`Address` class handles creating and formatting address data. Pass the constructor an associative array of address details. Array keys are case-sensitive.
50
+
The`Address` class handles creating and formatting address data. Pass the constructor an associative array of address details. Array keys are case-sensitive.
51
51
Below is an example of creating an address and making an api request for validation.
52
52
53
53
```php
@@ -67,21 +67,21 @@ The USPS api limits 5 address validations per request. If you need to validate m
0 commit comments