alihossein/time

this is my test package
15 2
Install
composer require alihossein/time
License:MIT
Last Updated:Nov 30, 2016
Links: GitHub  ·  Packagist
Maintainer: alihossein

package's home : alihossein/time

This package belong to Course "How to create a Laravel 5.3 package"


Installation:

Run below statements on your terminal :

STEP 1 :

composer require "alihossein/time":"dev-master"

STEP 2 : Add provider and facade in config/app.php

'providers' => [
  ...
  \Alihossein\Time\TimeServiceProvider::class, // <-- add this line at the end of provider array
],


'aliases' => [
  ...
  'MyTimerFacade'=>\Alihossein\Time\Facade\TimerFacade::class, // <-- add this line at the end of aliases array
]

Step 3:

php artisan vendor:publish

Step 4:

php artisan migrate

Configuration file is placed in config/MyConfig.php , open it and enter your Timezone:

Related Packages

jeroen-g/laravel-packager

A cli tool for creating Laravel packages.

738,089 1,371
lab404/laravel-impersonate

Laravel Impersonate is a plugin that allows to you to authenticate as your users...

19,493,333 2,339
jrenton/laravel-5-scaffold

Fastest way to rapidly scaffold a laravel application

268 4
igaster/laravel-theme

Laravel Themes: Asset & Views folder per theme. Theme inheritance. Blade integra...

1,260,414 515
bschmitt/laravel-amqp

AMQP wrapper for Laravel and Lumen to publish and consume messages

2,584,068 281