d3vnz / issuetracker
GitHub issue tracking integration for Laravel applications using Filament 3
v1.0.1.10
2025-03-10 21:15 UTC
Requires
- php: ^8.3
- filament/filament: ^3.0
- graham-campbell/github: ^12.0
- laravel/framework: ^11.0
- dev-main
- v1.0.1.10
- v1.0.1.9
- v1.0.1.8
- v1.0.1.7
- v1.0.1.6
- v1.0.1.5
- v1.0.1.4
- v1.0.1.3
- v1.0.1.2
- v1.0.1.1
- v1.0.0.30
- 1.0.0.29
- 1.0.0.28
- 1.0.0.27
- 1.0.0.26
- 1.0.0.25
- 1.0.0.24
- 1.0.0.23
- 1.0.0.22
- 1.0.0.21
- 1.0.0.20
- 1.0.0.19
- 1.0.0.18
- 1.0.0.17
- 1.0.0.16
- 1.0.0.15
- 1.0.0.14
- v1.0.0.13
- v1.0.0.12
- v1.0.0.11
- v1.0.0.10
- v1.0.0.9
- v1.0.0.8
- v1.0.0.7
- v1.0.0.6
- v1.0.0.5
- v1.0.0.4
- v1.0.0.3
- v1.0.0.2
- v1.0.0.1
- v1.0.0.0
This package is auto-updated.
Last update: 2025-03-10 21:22:40 UTC
README
This package provides a GitHub issue tracking integration for Laravel applications using Filament 3.
Requirements
- PHP 8.0+
- Laravel 9.0+
- Filament 3.0+
Installation
You can install the package via composer:
composer require d3vnz/issuetracker
php artisan vendor:publish --tag=d3vnz-issuetracker-migrations
php artisan migrate
php artisan vendor:publish --provider="GrahamCampbell\GitHub\GitHubServiceProvider"
Config
In your services.php add the following:
'github' => [ 'token' => env('GITHUB_TOKEN'), 'owner' => env('GITHUB_OWNER'), 'repo' => env('GITHUB_REPO'), ],
Console
Add the following to your console
Schedule::command('github:sync-issues')->everyThirtyMinutes();