diff --git a/README.md b/README.md index 202f06a..dd93af7 100644 --- a/README.md +++ b/README.md @@ -1 +1,3 @@ # Php Time Zone + +php artisan vendor:publish --provider="Joy2362\PhpTimezone\PhpTimeZoneServiceProvider" diff --git a/composer.json b/composer.json index 82038e7..fa9ddcd 100644 --- a/composer.json +++ b/composer.json @@ -2,6 +2,7 @@ "name": "joy2362/php-time-zone", "description": "A simple package that provide list of all timezone that php support", "type": "library", + "keywords": ["laravel", "timezone","php-time-zone"], "require": { "php": "^7.2.5|^8.0" }, @@ -24,5 +25,9 @@ ] } }, - "minimum-stability": "dev" + "config": { + "sort-packages": true + }, + "minimum-stability": "dev", + "prefer-stable": true } diff --git a/src/Facades/TimeZoneFacade.php b/src/Facades/TimeZoneFacade.php index 4ba64f4..644b3fd 100644 --- a/src/Facades/TimeZoneFacade.php +++ b/src/Facades/TimeZoneFacade.php @@ -1,5 +1,4 @@ alias('TimeZone', Joy2362\PhpTimezone\Facades\TimeZoneFacade::class); + $loader->alias('TimeZone', TimeZoneFacade::class); } diff --git a/src/TimeZoneService.php b/src/TimeZoneService.php index 9926c8a..d438e09 100644 --- a/src/TimeZoneService.php +++ b/src/TimeZoneService.php @@ -1,5 +1,4 @@