PHPackages                             maloun96/laravel-qa-orchestrator - 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. [Testing &amp; Quality](/categories/testing)
4. /
5. maloun96/laravel-qa-orchestrator

ActiveLibrary[Testing &amp; Quality](/categories/testing)

maloun96/laravel-qa-orchestrator
================================

AI-powered QA automation: Jira webhook → AI test generation → Playwright PR → CI → Analysis → Jira update

v1.5.3(3mo ago)019MITPHPPHP ^8.2

Since Feb 4Pushed 3mo agoCompare

[ Source](https://github.com/maloun96/laravel-qa-orchestrator)[ Packagist](https://packagist.org/packages/maloun96/laravel-qa-orchestrator)[ RSS](/packages/maloun96-laravel-qa-orchestrator/feed)WikiDiscussions main Synced 1mo ago

READMEChangelogDependencies (7)Versions (10)Used By (0)

Laravel QA Orchestrator
=======================

[](#laravel-qa-orchestrator)

AI-powered QA automation: Jira webhook → AI test generation → Playwright PR → CI → Analysis → Jira update

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

[](#installation)

```
composer require maloun96/laravel-qa-orchestrator
```

Configuration
-------------

[](#configuration)

Publish the config file:

```
php artisan vendor:publish --tag=qa-orchestrator-config
```

Add to `.env`:

```
# Jira
QA_JIRA_BASE_URL=https://your-domain.atlassian.net
QA_JIRA_EMAIL=your-email@example.com
QA_JIRA_API_TOKEN=your-api-token
QA_JIRA_QA_STATUS="Ready for QA"
QA_JIRA_AUTO_CREATE_DEFECTS=false

# Claude AI
QA_CLAUDE_API_KEY=your-anthropic-api-key
QA_CLAUDE_MODEL=claude-sonnet-4-20250514

# GitHub
QA_GITHUB_TOKEN=your-github-token
QA_GITHUB_REPO=owner/repo
QA_GITHUB_DEFAULT_BRANCH=main
```

Migrations
----------

[](#migrations)

```
php artisan migrate
```

Or publish migrations for customization:

```
php artisan vendor:publish --tag=qa-orchestrator-migrations
```

Architecture
------------

[](#architecture)

```
Jira (Ready for QA) ──webhook──▶ JiraQAWebhookController
                                       │
                                       ▼
                              JiraReadyForQAEvent
                                       │
                                       ▼
                          ProcessJiraQAWebhookJob (queued)
                                       │
                   ┌───────────────────┼───────────────────┐
                   ▼                   ▼                   ▼
          JiraClient.getTicket   Create QAProcess    ClaudeService
                   │                   │            .generateTestCases
                   └───────────────────┼───────────────────┘
                                       ▼
                          ClaudeService.generatePlaywright
                                       │
                                       ▼
                   GitHubService.createBranch/commit/PR
                                       │
                                       ▼
                          GitHub Actions (e2e_tests)
                                       │
                                       ▼
                          GitHubQAWebhookController
                                       │
                                       ▼
                      ClaudeService.analyzeResults
                                       │
                   ┌───────────────────┼───────────────────┐
                   ▼                   ▼                   ▼
         JiraClient.update    Update QAProcess    Create defects

```

API Endpoints
-------------

[](#api-endpoints)

### POST /api/qa/jira-webhook

[](#post-apiqajira-webhook)

Receives Jira webhooks when tickets move to "Ready for QA"

### POST /api/qa/github-webhook

[](#post-apiqagithub-webhook)

Receives GitHub Actions workflow completion events

Events
------

[](#events)

- `JiraReadyForQAEvent` - Dispatched when a Jira ticket is ready for QA
- `TestCasesGeneratedEvent` - Dispatched when test cases are generated
- `TestsCompletedEvent` - Dispatched when GitHub Actions tests complete

Customization
-------------

[](#customization)

### Views

[](#views)

Publish views for customization:

```
php artisan vendor:publish --tag=qa-orchestrator-views
```

Views are located in `resources/views/vendor/qa-orchestrator/prompts/`:

- `generate-test-cases.blade.php` - Test case generation prompt
- `generate-playwright.blade.php` - Playwright code generation prompt
- `analyze-results.blade.php` - Test results analysis prompt

### Disabling Routes

[](#disabling-routes)

Set `QA_ROUTES_ENABLED=false` in `.env` to disable automatic route registration.

### Custom Route Prefix

[](#custom-route-prefix)

Set `QA_ROUTES_PREFIX=your-prefix` to change the route prefix.

License
-------

[](#license)

MIT

###  Health Score

39

—

LowBetter than 86% of packages

Maintenance82

Actively maintained with recent releases

Popularity6

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity52

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% 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

Every ~0 days

Total

9

Last Release

98d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/8dd09f1783cc7cfa88fdd53a22bc3874f67c325d1ef39fb0b2ddc78aabad4b96?d=identicon)[maloun96](/maintainers/maloun96)

---

Top Contributors

[![maloun96](https://avatars.githubusercontent.com/u/8277264?v=4)](https://github.com/maloun96 "maloun96 (9 commits)")

---

Tags

testinglaravelautomationaiqajiraclaudeplaywright

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/maloun96-laravel-qa-orchestrator/health.svg)

```
[![Health](https://phpackages.com/badges/maloun96-laravel-qa-orchestrator/health.svg)](https://phpackages.com/packages/maloun96-laravel-qa-orchestrator)
```

###  Alternatives

[larastan/larastan

Larastan - Discover bugs in your code without running it. A phpstan/phpstan extension for Laravel

6.4k43.5M5.2k](/packages/larastan-larastan)[laravel/scout

Laravel Scout provides a driver based solution to searching your Eloquent models.

1.7k49.4M479](/packages/laravel-scout)[laravel/pulse

Laravel Pulse is a real-time application performance monitoring tool and dashboard for your Laravel application.

1.7k12.1M99](/packages/laravel-pulse)[timacdonald/log-fake

A drop in fake logger for testing with the Laravel framework.

4235.9M56](/packages/timacdonald-log-fake)[sti3bas/laravel-scout-array-driver

Array driver for Laravel Scout

971.5M3](/packages/sti3bas-laravel-scout-array-driver)

PHPackages © 2026

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