You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As a developer I want a ready-to-use development environment with automated quality checks So that every story has a baseline to run tests and validate code style
As a developer
I want a ready-to-use development environment with automated quality checks
So that every story has a baseline to run tests and validate code style
Acceptance Criteria
Tooling
composer.json— PHP >=8.3, PSR-only deps (http-client, http-factory, log), dev deps (phpunit, mockery, phpstan, phpcs, guzzle, league/openapi-psr7-validator)phpunit.xml.dist— unit + integration suites, integration/testcontainers groups excluded by defaultphpstan.neon.dist— level max, src/ pathstest/bootstrap.php— autoload discoveryCI Pipeline
.github/workflows/tests.yml— 2 jobs: unit (push/PR, phpstan + phpunit), testcontainers (workflow_dispatch, docker:dind)vendor/bin/phpcs --standard=PSR12 src/— configured, 0 errorsvendor/bin/phpstan analyse src/ --level=max— 0 real errorsvendor/bin/phpunit --testsuite=unit— exits 0Quality Gates
declare(strict_types=1)?>closing tags