LaravelPackages.net
Acme Inc.
Toggle sidebar
szonov/laravel-redmine

Laravel wrapper for the Redmine API

343
0
v1.0.2
About szonov/laravel-redmine

szonov/laravel-redmine is a Laravel package for laravel wrapper for the redmine api. It currently has 0 GitHub stars and 343 downloads on Packagist (latest version v1.0.2). Install it with composer require szonov/laravel-redmine. Discover more Laravel packages by szonov or browse all Laravel packages to compare alternatives.

Last updated

Laravel Redmine

Laravel wrapper for the Redmine API. https://github.com/kbsali/php-redmine-api

Installation

  1. install package

composer require szonov/laravel-redmine

  1. publish config file

php artisan vendor:publish --provider "SZonov\Redmine\RedmineServiceProvider"

  1. update config stored in config/redmine.php.

Usage

  1. using facades
use SZonov\Redmine\Facades\Redmine;

dump(Redmine::user()->all());
dump(Redmine::host('other')->user()->all());
  1. using app helper
dump(app('redmine')->user()->all());
dump(app('redmine')->host('other')->user()->all());

Star History Chart