2017 © Pedro Peláez
 

package taiga-laravel

A Laravel package for the TaigaPHP library

image

tzk/taiga-laravel

A Laravel package for the TaigaPHP library

  • Monday, November 27, 2017
  • by TZK-
  • Repository
  • 1 Watchers
  • 1 Stars
  • 375 Installations
  • PHP
  • 0 Dependents
  • 1 Suggesters
  • 1 Forks
  • 0 Open issues
  • 9 Versions
  • 6 % Grown

The README.md

Taiga Laravel

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

Installation

Require this package with composer:, (*2)

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)., (*3)

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

TZK\TaigaLaravel\TaigaServiceProvider::class,

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

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

You can publish configuration file if you want to provide extra HTTP header configurations:, (*6)

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., (*7)

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:, (*8)

$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, (*9)

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

Documentation

There is more information about the package in the TaigaPHP repository., (*10)

The Versions

27/11 2017

dev-master

9999999-dev

A Laravel package for the TaigaPHP library

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel taiga tzk taiga-laravel

27/11 2017

v2.0.1

2.0.1.0

A Laravel package for the TaigaPHP library

  Sources   Download

MIT

The Requires

 

laravel taiga tzk taiga-laravel

19/10 2017

v2.0.0

2.0.0.0

A Laravel package for the TaigaPHP library

  Sources   Download

MIT

The Requires

 

laravel taiga tzk taiga-laravel

19/10 2017

v1.1.1

1.1.1.0

A Laravel package for the TaigaPHP library

  Sources   Download

MIT

The Requires

 

laravel taiga tzk taiga-laravel

08/05 2017

v1.1.0

1.1.0.0

A Laravel package for the TaigaPHP library

  Sources   Download

MIT

The Requires

 

laravel taiga tzk taiga-laravel

08/05 2017

v1.0.0

1.0.0.0

A Laravel package for the TaigaPHP library

  Sources   Download

MIT

The Requires

 

laravel taiga tzk taiga-laravel

23/11 2016

v1.0.2

1.0.2.0

A Laravel package for the TaigaPHP library

  Sources   Download

MIT

The Requires

 

The Development Requires

tzk taiga-laravel

22/11 2016

v1.0.1

1.0.1.0

A Laravel package for the TaigaPHP library

  Sources   Download

MIT

The Requires

 

The Development Requires

tzk taiga-laravel

11/07 2016

v1.0

1.0.0.0

A Laravel package for the TaigaPHP library

  Sources   Download

MIT

The Requires

 

The Development Requires

tzk taiga-laravel