diff --git a/README.md b/README.md index b0e4c26..0dc53cc 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ -[![Circle CI](https://circleci.com/gh/navjobs/google-geocoder.svg?style=shield)](https://circleci.com/gh/navjobs/google-geocoder) -[![Code Climate](https://codeclimate.com/github/navjobs/google-geocoder/badges/gpa.svg)](https://codeclimate.com/github/navjobs/google-geocoder) +[![Circle CI](https://circleci.com/gh/ConstructionJobs/google-geocoder.svg?style=shield)](https://circleci.com/gh/ConstructionJobs/google-geocoder) +[![Code Climate](https://codeclimate.com/github/ConstructionJobs/google-geocoder/badges/gpa.svg)](https://codeclimate.com/github/ConstructionJobs/google-geocoder) ###### Google Geocoding Provides an abstraction for requests to Google Maps geocoding service. @@ -8,7 +8,7 @@ Provides an abstraction for requests to Google Maps geocoding service. You can install this package via Composer using this command: ```bash -composer require navjobs/google-geocoder +composer require ConstructionJobs/google-geocoder ``` ## Laravel Installation @@ -18,14 +18,14 @@ This package comes with a service provider for use with Laravel. To install the // config/app.php 'providers' => [ // other providers - 'NavJobs\GoogleGeocoder\GoogleGeocoderServiceProvider' + 'ConstructionJobs\GoogleGeocoder\GoogleGeocoderServiceProvider' ]; ``` Also you must publish the config file: ```php -php artisan vendor:publish --provider="NavJobs\GoogleGeocoder\GoogleGeocoderServiceProvider" +php artisan vendor:publish --provider="ConstructionJobs\GoogleGeocoder\GoogleGeocoderServiceProvider" ``` The config file allows you to set your `api key`, `language` and `region`. diff --git a/composer.json b/composer.json index 0248510..908a6d4 100644 --- a/composer.json +++ b/composer.json @@ -1,12 +1,12 @@ { - "name": "navjobs/google-geocoder", + "name": "ConstructionJobs/google-geocoder", "description": "Abstraction for geocoding through Google Maps.", "keywords": [ "google", "geocoding", "maps" ], - "homepage": "https://navjobs.com", + "homepage": "https://constructionjobs.com", "license": "MIT", "require": { "php" : ">=5.6.0", @@ -20,12 +20,12 @@ }, "autoload": { "psr-4": { - "NavJobs\\GoogleGeocoder\\": "src" + "ConstructionJobs\\GoogleGeocoder\\": "src" } }, "autoload-dev": { "psr-4": { - "NavJobs\\GoogleGeocoder\\Test\\": "tests" + "ConstructionJobs\\GoogleGeocoder\\Test\\": "tests" } }, "scripts": { diff --git a/src/Exceptions/AccessDenied.php b/src/Exceptions/AccessDenied.php index 019d2c8..358fdaf 100644 --- a/src/Exceptions/AccessDenied.php +++ b/src/Exceptions/AccessDenied.php @@ -1,6 +1,6 @@