Add Joomla-aware development workflows and scripts

- Created extension packaging script
- Added PHPStan configuration for static analysis
- Added PHP_CodeSniffer configuration with Joomla standards
- Created Codeception testing framework setup
- Added PHP quality check workflow
- Added Joomla testing workflow with multiple versions
- Added staging deployment workflow
- Created comprehensive documentation
- Set up test directory structure with sample tests

Co-authored-by: jmiller-moko <230051081+jmiller-moko@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2026-01-04 03:03:20 +00:00
parent b4967d5262
commit 9d7651d349
17 changed files with 1448 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
<?php
namespace Tests\Support;
/**
* Acceptance test helper class
*
* Provides helper methods for acceptance testing
*/
class AcceptanceHelper extends \Codeception\Module
{
/**
* Custom helper methods can be added here
*/
}

View File

@@ -0,0 +1,15 @@
<?php
namespace Tests\Support;
/**
* Unit test helper class
*
* Provides helper methods for unit testing
*/
class UnitHelper extends \Codeception\Module
{
/**
* Custom helper methods can be added here
*/
}