PHPackages                             vortechstudio/laravel-github-issues - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. vortechstudio/laravel-github-issues

ActiveLibrary

vortechstudio/laravel-github-issues
===================================

Ce package dédié à laravel permet d'ouvrir un ticket sur github quand une Exception de type Erreur, Critique ou Urgence apparait dans le code, il peut être aider d'openAI pour créer le ticket.

v1.0.0(2y ago)05[3 PRs](https://github.com/vortechstudio-packager/laravel-github-issues/pulls)MITPHPPHP ^8.1

Since Jan 29Pushed 1y agoCompare

[ Source](https://github.com/vortechstudio-packager/laravel-github-issues)[ Packagist](https://packagist.org/packages/vortechstudio/laravel-github-issues)[ Docs](https://github.com/vortechstudio/laravel-github-issues)[ GitHub Sponsors]()[ RSS](/packages/vortechstudio-laravel-github-issues/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (2)Dependencies (16)Versions (7)Used By (0)

Ce package dédié à laravel permet d'ouvrir un ticket sur github quand une Exception de type Erreur, Critique ou Urgence apparait dans le code, il peut être aider d'openAI pour créer le ticket.
================================================================================================================================================================================================

[](#ce-package-dédié-à-laravel-permet-douvrir-un-ticket-sur-github-quand-une-exception-de-type-erreur-critique-ou-urgence-apparait-dans-le-code-il-peut-être-aider-dopenai-pour-créer-le-ticket)

[![Latest Version on Packagist](https://camo.githubusercontent.com/e20e77e2e90d7cfb6d363631f3c08c40ed76cd41f33c186f2b75d45aec60eef7/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f766f727465636873747564696f2f6c61726176656c2d6769746875622d6973737565732e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/vortechstudio/laravel-github-issues)[![GitHub Tests Action Status](https://camo.githubusercontent.com/d503c020476c793a5db82b20bd0c167f67b08c1e0d9aab8e342aeafc404a7ba8/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f766f727465636873747564696f2f6c61726176656c2d6769746875622d6973737565732f72756e2d74657374732e796d6c3f6272616e63683d6d61696e266c6162656c3d7465737473267374796c653d666c61742d737175617265)](https://github.com/vortechstudio/laravel-github-issues/actions?query=workflow%3Arun-tests+branch%3Amain)[![GitHub Code Style Action Status](https://camo.githubusercontent.com/89745f9170eacd435ab2cf148a96f380ae6ab3d3e6726f34eb3d0907c30406d4/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f766f727465636873747564696f2f6c61726176656c2d6769746875622d6973737565732f6669782d7068702d636f64652d7374796c652d6973737565732e796d6c3f6272616e63683d6d61696e266c6162656c3d636f64652532307374796c65267374796c653d666c61742d737175617265)](https://github.com/vortechstudio/laravel-github-issues/actions?query=workflow%3A%22Fix+PHP+code+style+issues%22+branch%3Amain)[![Total Downloads](https://camo.githubusercontent.com/967f2304f095ff9b162daebbf6e02362de92ed96834bb50704c9c7382a17c031/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f766f727465636873747564696f2f6c61726176656c2d6769746875622d6973737565732e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/vortechstudio/laravel-github-issues)

This is where your description should go. Limit it to a paragraph or two. Consider adding a small example.

Support us
----------

[](#support-us)

[![](https://camo.githubusercontent.com/3123b2e8e065637c5b22cbb023be866a6777120c75749ad69e126c585e499326/68747470733a2f2f6769746875622d6164732e73332e65752d63656e7472616c2d312e616d617a6f6e6177732e636f6d2f6c61726176656c2d6769746875622d6973737565732e6a70673f743d31)](https://spatie.be/github-ad-click/laravel-github-issues)

We invest a lot of resources into creating [best in class open source packages](https://spatie.be/open-source). You can support us by [buying one of our paid products](https://spatie.be/open-source/support-us).

We highly appreciate you sending us a postcard from your hometown, mentioning which of our package(s) you are using. You'll find our address on [our contact page](https://spatie.be/about-us). We publish all received postcards on [our virtual postcard wall](https://spatie.be/open-source/postcards).

Installation
------------

[](#installation)

You can install the package via composer:

```
composer require vortechstudio/laravel-github-issues
```

You can publish and run the migrations with:

```
php artisan vendor:publish --tag="laravel-github-issues-migrations"
php artisan migrate
```

You can publish the config file with:

```
php artisan vendor:publish --tag="laravel-github-issues-config"
```

Ajouter les variables d'environnement suivantes dans le fichier .env

```
GITHUB_TOKEN=
GITHUB_OWNER=
GITHUB_REPOSITORY=
OPENAI_STATE=true
OPENAI_API_KEY=sk-...
OPENAI_ORGANIZATION=org-...
```

> OPENAI\_STATE permet d'activer ou non l'api openAI pour la création du ticket
>
> Si vous n'avez pas de compte openAI, vous pouvez en créer un gratuitement sur
>
> Créer votre compte et ajouter votre clé API dans la variable OPENAI\_API\_KEY

Ajouter le service Github dans le fichier `config/services.php`

```
    'github' => [
        "token" => env('GH_TOKEN', null),
    ],
```

Ajouter le système log dans le fichier `config/logging.php`

```
    'github_issues' => [
            "driver" => "monolog",
            'level' => "error",
            "handler" => \Vortechstudio\LaravelGithubIssues\GithubIssuesHandler::class,
            "channels" => ["daily"]
        ]
```

Définir le LOG\_CHANNEL du fichier .env sur github\_issues

Usage
-----

[](#usage)

Le système détectera automatiquement une Erreur de type error ou supérieur et créera un ticket sur github.

Testing
-------

[](#testing)

```
composer test
```

Changelog
---------

[](#changelog)

Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](CONTRIBUTING.md) for details.

Security Vulnerabilities
------------------------

[](#security-vulnerabilities)

Please review [our security policy](../../security/policy) on how to report security vulnerabilities.

Credits
-------

[](#credits)

- [Vortech Studio](https://github.com/vortechstudio)
- [All Contributors](../../contributors)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

26

—

LowBetter than 43% of packages

Maintenance27

Infrequent updates — may be unmaintained

Popularity4

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity55

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 93.8% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Unknown

Total

1

Last Release

840d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/2837bbbc36d8550567dadcfe1eaf3170ba56aa68debfb65082043799d55c5eee?d=identicon)[vortechstudio](/maintainers/vortechstudio)

---

Top Contributors

[![vortechstudio](https://avatars.githubusercontent.com/u/155325740?v=4)](https://github.com/vortechstudio "vortechstudio (30 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (1 commits)")[![github-actions[bot]](https://avatars.githubusercontent.com/in/15368?v=4)](https://github.com/github-actions[bot] "github-actions[bot] (1 commits)")

---

Tags

laravelVortech Studiolaravel-github-issues

###  Code Quality

TestsPest

Static AnalysisPHPStan

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/vortechstudio-laravel-github-issues/health.svg)

```
[![Health](https://phpackages.com/badges/vortechstudio-laravel-github-issues/health.svg)](https://phpackages.com/packages/vortechstudio-laravel-github-issues)
```

###  Alternatives

[bezhansalleh/filament-shield

Filament support for `spatie/laravel-permission`.

2.8k2.9M88](/packages/bezhansalleh-filament-shield)[spatie/laravel-health

Monitor the health of a Laravel application

86910.0M83](/packages/spatie-laravel-health)[spatie/laravel-livewire-wizard

Build wizards using Livewire

4061.0M4](/packages/spatie-laravel-livewire-wizard)[clickbar/laravel-magellan

This package provides functionality for working with the postgis extension in Laravel.

423715.4k1](/packages/clickbar-laravel-magellan)[spatie/laravel-prometheus

Export Laravel metrics to Prometheus

2651.3M6](/packages/spatie-laravel-prometheus)[vormkracht10/laravel-mails

Laravel Mails can collect everything you might want to track about the mails that has been sent by your Laravel app.

24149.7k](/packages/vormkracht10-laravel-mails)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
