Skip to content

Commit 67897b4

Browse files
committed
housekeeping
1 parent 72256a0 commit 67897b4

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

.styleci.yml

-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
11
preset: laravel
22

3-
linting: true

.travis.yml

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ php:
55
- 5.6
66
- 7.0
77
- 7.1
8+
- 7.2
89

910
before_script:
1011
- composer install --prefer-source --no-interaction --dev

README.md

+10-10
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,6 @@ This PHP package can convert any address to GPS coordinates.
1111

1212
Spatie is a webdesign agency in Antwerp, Belgium. You'll find an overview of all our open source projects [on our website](https://spatie.be/opensource).
1313

14-
## Postcardware
15-
16-
You're free to use this package (it's [MIT-licensed](LICENSE.md)), but if it makes it to your production environment you are required to send us a postcard from your hometown, mentioning which of our package(s) you are using.
17-
18-
Our address is: Spatie, Samberstraat 69D, 2060 Antwerp, Belgium.
19-
20-
The best postcards will get published on the open source page on our website.
21-
2214
## Installation
2315

2416
You can install this package through composer.
@@ -36,7 +28,7 @@ Install this service provider
3628
// config/app.php
3729
'providers' => [
3830
'...',
39-
'Spatie\Geocoder\GeocoderServiceProvider'
31+
Spatie\Geocoder\GeocoderServiceProvider::class
4032
];
4133
```
4234

@@ -47,7 +39,7 @@ Geocoder also comes with a facade, which provides an easy way to call the Geocod
4739
// config/app.php
4840
'aliases' => array(
4941
...
50-
'Geocoder' => 'Spatie\Geocoder\GeocoderFacade',
42+
'Geocoder' => Spatie\Geocoder\GeocoderFacade::class,
5143
)
5244
```
5345

@@ -160,5 +152,13 @@ You can read more information about these values [on the Google Geocoding API Pa
160152

161153
When an address is not found accuracy and formatted_address will contain `NOT_FOUND`
162154

155+
## Postcardware
156+
157+
You're free to use this package (it's [MIT-licensed](LICENSE.md)), but if it makes it to your production environment you are required to send us a postcard from your hometown, mentioning which of our package(s) you are using.
158+
159+
Our address is: Spatie, Samberstraat 69D, 2060 Antwerp, Belgium.
160+
161+
The best postcards will get published on the open source page on our website.
162+
163163
## About Spatie
164164
Spatie is a webdesign agency in Antwerp, Belgium. You'll find an overview of all our open source projects [on our website](https://spatie.be/opensource).

0 commit comments

Comments
 (0)