binota / laravel-php-duration
A wrapper of kevinkhill/php-duration
This package's canonical repository appears to be gone and the package has been frozen as a result. Email us for help if needed.
1.0.5
2018-04-27 14:19 UTC
Requires
- khill/php-duration: ~1.0
This package is not auto-updated.
Last update: 2019-07-27 18:42:51 UTC
README
This package is a wrapper of kevinkhill/php-duration. It provides Facade and Service Provider for Laravel Framework
Installation
Simply use composer:
composer require binota/laravel-php-duration
Add service provider in config/app.php:
'providers' => [ // .... Binota\LaravelPhpDuration\DurationServiceProvider::class, ],
Add alia for facade:
'alias' => [ // .... Binota\LaravelPhpDuration\Facades\Duration::class, ]