ggdx / LaravelToggl by Gingerdan

Laravel 5 service provider for Toggl, the time tracker app
29
1
1
Package Data
Maintainer Username: Gingerdan
Maintainer Contact: hi@dwhite.me (Daniel White)
Package Create Date: 2016-11-09
Package Last Update: 2016-11-23
Home Page:
Language: PHP
License: MIT
Last Refreshed: 2024-03-27 03:17:29
Package Statistics
Total Downloads: 29
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 1
Total Watchers: 1
Total Forks: 0
Total Open Issues: 0

LaravelToggl

Getting started

Composer

composer require ggdx/laravel-toggl

Laravel

Add the provider:

'providers' => [
    GGDX\LaravelToggl\TogglServiceProvider::class,
]

Add the facade:

'aliases' => [
    'Toggl' => GGDX\LaravelToggl\TogglFacade::class,
]

Generate the config file:

php artisan vendor:publish

If using version control, add TOGGL_KEY=your_key to the .env or add your key directly to config/toggl.php


More info

Wiki will be built as and when time allows however all GGDX\LaravelToggl\Requests\ classes are fully documented.