Laravel wrapper for the Redmine API. https://github.com/kbsali/php-redmine-api
- install package
composer require szonov/laravel-redmine
- publish config file
php artisan vendor:publish --provider "SZonov\Redmine\RedmineServiceProvider"
- update config stored in
config/redmine.php.
- using facades
use SZonov\Redmine\Facades\Redmine; dump(Redmine::user()->all()); dump(Redmine::host('other')->user()->all());- using app helper
dump(app('redmine')->user()->all()); dump(app('redmine')->host('other')->user()->all());