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(5mo ago)019MITPHPPHP ^8.2

Since Feb 4Pushed 5mo 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 today

READMEChangelogDependenciesVersions (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

37

—

LowBetter than 81% of packages

Maintenance73

Regular maintenance activity

Popularity6

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity53

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

150d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/8277264?v=4)[Victor Malai](/maintainers/maloun96)[@maloun96](https://github.com/maloun96)

---

Top Contributors

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

---

Tags

testinglaravelautomationaiqajiraclaudeplaywright

### 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

[playwright-php/playwright

Modern PHP library for Playwright automation: browsing, scraping, screenshots, testing, and more.

19540.8k6](/packages/playwright-php-playwright)[hyvor/laravel-playwright

Laravel and Playwright E2E Testing

3419.9k](/packages/hyvor-laravel-playwright)[davestewart/sketchpad

An innovative front-end environment for interactive Laravel development

29512.9k1](/packages/davestewart-sketchpad)[mohamed-ashraf-elsaed/claude-agent-sdk-laravel

Anthropic Claude Agent SDK for PHP &amp; Laravel — build AI agents with tool use, sandboxing, MCP servers, subagents, hooks, and structured output via the Claude Code CLI

171.1k](/packages/mohamed-ashraf-elsaed-claude-agent-sdk-laravel)[srlabs/laravel-testing-utilities

Helper utilities for testing Laravel Applications

1011.9k](/packages/srlabs-laravel-testing-utilities)

PHPackages © 2026

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