PHP code example of szonov / laravel-redmine

1. Go to this page and download the library: Download szonov/laravel-redmine library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

szonov / laravel-redmine example snippets


use SZonov\Redmine\Facades\Redmine;

dump(Redmine::user()->all());
dump(Redmine::host('other')->user()->all());

dump(app('redmine')->user()->all());
dump(app('redmine')->host('other')->user()->all());