PHPackages                             aurorawebsoftware/aissue - 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. [Utility &amp; Helpers](/categories/utility)
4. /
5. aurorawebsoftware/aissue

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

aurorawebsoftware/aissue
========================

AIssue Package for Laravel

12.0.0(5mo ago)138581[4 PRs](https://github.com/AuroraWebSoftware/AIssue/pulls)MITPHPPHP ^8.2|^8.3CI passing

Since Sep 5Pushed 2mo ago1 watchersCompare

[ Source](https://github.com/AuroraWebSoftware/AIssue)[ Packagist](https://packagist.org/packages/aurorawebsoftware/aissue)[ Docs](https://github.com/aurorawebsoftware/aissue)[ RSS](/packages/aurorawebsoftware-aissue/feed)WikiDiscussions main Synced 3w ago

READMEChangelog (10)Dependencies (15)Versions (28)Used By (0)

**Laravel AIssue Package**
==========================

[](#laravel-aissue-package)

The Laravel AIssue package provides a comprehensive solution for managing issues within your Laravel applications. Built with flexibility and extensibility in mind, it integrates seamlessly with Laravel's Eloquent ORM, offering a rich set of features to handle issue tracking, state management, and connections between different models.

**Features**
------------

[](#features)

- **Customizable Issue Tracking**: Track issues with customizable fields, descriptions, summaries, and timestamps.
- **Workflow Integration**: Utilize the ArFlow package for state management of issues, allowing for complex workflows with multiple states and transitions.
- **Dynamic Relationships**: Leverage the Connective package for dynamic relationships between issues and various actors (e.g., reporters, responsible parties, observers).
- **Event Management**: Incorporate event management for issues, including setting due dates and reminders, through integration with the ACalendar package.
- **Extensible and Modular**: Designed with modularity in mind, allowing for easy extension and customization to fit your application's specific needs.

**Installation**
----------------

[](#installation)

You can install the package via composer:

```
composer require aurorawebsoftware/aissue
```

After installation, publish and run the migrations with:

```
php artisan vendor:publish --provider="AuroraWebSoftware\AIssue\AIssueServiceProvider" --tag="migrations"
php artisan migrate
```

**Usage**
---------

[](#usage)

### **Basic Concepts**

[](#basic-concepts)

Before diving into the code, it's essential to understand the main components of the AIssue package:

- **Issues**: The central entity representing a problem or task that needs to be addressed.
- **Actors**: Entities such as users who interact with issues in different capacities (e.g., reporter, responsible party).
- **Workflow States**: Define the lifecycle of an issue through various states (e.g., open, in progress, closed).

### **Defining and Managing Issues**

[](#defining-and-managing-issues)

Create a new issue:

```
use AuroraWebSoftware\AIssue\Models\AIssue;

$issue = AIssue::create([
    'summary' => 'Example issue',
    'description' => 'Detailed description of the issue',
]);

// Apply a predefined workflow
$issue->applyWorkflow('simple');
```

Add actors to an issue:

```
// Assuming $user1 and $user2 are instances of a Model that implements IssueActorModelContract
$issue->setReporter($user1); // Set the reporter
$issue->setResponsible($user2); // Set the responsible party
```

Manage issue states:

```
// Transition to another state
$issue->transitionTo('state2');

// Check current state
$currentState = $issue->currentState();
```

### **Working with Connectives and Observers**

[](#working-with-connectives-and-observers)

```
// Add observers to an issue
$issue->addObserver($user3);
$issue->addObserver($user4);

// Remove an observer
$issue->removeObserver($user3);

// Remove all observers
$issue->removeAllObservers();
```

### **Setting and Managing Due Dates**

[](#setting-and-managing-due-dates)

```
use Illuminate\Support\Carbon;

// Set a due date for the issue
$issue->setDueDate(Carbon::today());

// Remove the due date
$issue->removeDueDate();
```

**Advanced Usage**
------------------

[](#advanced-usage)

The AIssue package supports more advanced features and integrations, allowing for a highly customizable issue tracking system. For more details on these advanced features, please refer to the comprehensive documentation.

**Contributing**
----------------

[](#contributing)

Contributions are welcome and will help make AIssue even better. If you're interested in contributing, please check out the contributing guide.

**License**
-----------

[](#license)

The Laravel AIssue package is open-sourced software licensed under the [MIT license](https://chat.openai.com/g/g-8MaB2KpKn-laravel-developer/c/LICENSE.md).

---

This README provides a solid foundation for your Laravel AIssue package, outlining its capabilities, how to get started, and how to use its main features. You can further customize and expand it based on the specific details and additional functionalities of your package.

###  Health Score

51

—

FairBetter than 95% of packages

Maintenance80

Actively maintained with recent releases

Popularity23

Limited adoption so far

Community14

Small or concentrated contributor base

Maturity73

Established project with proven stability

 Bus Factor2

2 contributors hold 50%+ of commits

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

Every ~81 days

Recently: every ~103 days

Total

16

Last Release

167d ago

Major Versions

0.0.2 → 1.0.02022-09-19

1.0.1 → 2.0.02024-02-23

2.4.5 → 11.0.02024-12-11

11.0.1 → 12.0.02026-01-08

PHP version history (3 changes)0.0.1PHP ^8.1

2.0.0PHP ^8.2

11.0.0PHP ^8.2|^8.3

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/794216?v=4)[EA](/maintainers/emreakay)[@emreakay](https://github.com/emreakay)

---

Top Contributors

[![emreakay](https://avatars.githubusercontent.com/u/794216?v=4)](https://github.com/emreakay "emreakay (52 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (20 commits)")[![nusinan](https://avatars.githubusercontent.com/u/32702733?v=4)](https://github.com/nusinan "nusinan (20 commits)")[![github-actions[bot]](https://avatars.githubusercontent.com/in/15368?v=4)](https://github.com/github-actions[bot] "github-actions[bot] (13 commits)")[![meminuygur](https://avatars.githubusercontent.com/u/21062398?v=4)](https://github.com/meminuygur "meminuygur (1 commits)")[![mfarukdev](https://avatars.githubusercontent.com/u/83613682?v=4)](https://github.com/mfarukdev "mfarukdev (1 commits)")

---

Tags

issuelaravelmanagementtasklaravelAuroraWebSoftwareaissue

###  Code Quality

TestsPest

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/aurorawebsoftware-aissue/health.svg)

```
[![Health](https://phpackages.com/badges/aurorawebsoftware-aissue/health.svg)](https://phpackages.com/packages/aurorawebsoftware-aissue)
```

###  Alternatives

[markwalet/nova-modal-response

A Laravel Nova asset for Modal responses on an action.

17818.7k](/packages/markwalet-nova-modal-response)[aurorawebsoftware/acalendar

This is my package acalendar

241.1k2](/packages/aurorawebsoftware-acalendar)[aurorawebsoftware/arflow

ArFlow is a Laravel package that allows you to implement workflow management for your Laravel Eloquent models.

233.2k2](/packages/aurorawebsoftware-arflow)

PHPackages © 2026

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