tzk/taiga-laravel

A Laravel package for the TaigaPHP library
726 1
Install
composer require tzk/taiga-laravel
Latest Version:v2.1.0
PHP:~5.5|~7.0
License:MIT
Last Updated:Aug 26, 2018
Links: GitHub  ·  Packagist
Maintainer: TZK-

Taiga Laravel

TaigaLaravel is a package used to handle the TaigaPHP library with Laravel 5.x (Laravel 4 is not supported).

Installation

Require this package with composer:

composer install tzk/taiga-laravel

NB. You can skip adding the service provider & the facade if you use the Package Auto-discovery (>=Laravel 5.5).

After updating composer, add the TaigaServiceProvider to the providers array in the config/app.php file:

TZK\TaigaLaravel\TaigaServiceProvider::class,

If you want to use the facade you can also add this to your facades array in config/app.php:

'Taiga' => TZK\TaigaLaravel\Facades\Taiga::class,

You can publish configuration file if you want to provide extra HTTP header configurations:

php artisan vendor:publish --provider="TZK\TaigaLaravel\TaigaServiceProvider"

Note: It is not necessary if you only want basic configuration, since api, token and language can be set using your .env file by adding the following keys.

TAIGA_API=https://api.taiga.io/api/v1/
TAIGA_TOKEN=null
TAIGA_LANGUAGE=en

Usage

You can get a new Taiga thanks to the facade:

$taiga = Taiga::newInstance();
$issues = $taiga->issues()->getList(['project' => $projectId]);

// or

// If you do not use Taiga::newInstance(), it will create automatically a new one
// each time you call a method via the facade.
$issues = Taiga::issues()->getList(['project' => $projectId]);

Or get an instance from the IoC container

$taiga = app(\TZK\Taiga\Taiga::class)...

Documentation

There is more information about the package in the TaigaPHP repository.

Related Packages

reliese/laravel

Reliese Components for Laravel Framework code generation.

3,991,690 1,705
php-tmdb/laravel

Laravel Package for TMDB ( The Movie Database ) API. Provides easy access to the...

53,315 160
laravel-ja/laravel

The Laravel Framework.

5,667 17
kavenegar/laravel

laravel 4 and 5 kavenegar integration

368,693 86
laravel/laravel

The skeleton application for the Laravel framework.

64,930,508 84,972