Looking to hire Laravel developers? Try LaraJobs

laravel-redmine maintained by szonov

Description
Laravel wrapper for the Redmine API
Author
Last update
2024/04/06 03:46 (dev-main)
License
Links
Downloads
344
Tags

Comments
comments powered by Disqus

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());