PHP code example of eather009 / laravel-sprint-board
1. Go to this page and download the library: Download eather009/laravel-sprint-board 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/ */
eather009 / laravel-sprint-board example snippets
use Eather009\LaravelSprintBoard\Contracts\IssueTracker;
use App\Sprint\MyTracker;
$this->app->bind(IssueTracker::class, MyTracker::class);
bash
php artisan vendor:publish --tag=sprint-lang
php artisan vendor:publish --tag=sprint-migrations