php artisan boost:add-skill chamber-orchestra/meta
Save this content to: AGENTS.md
---
package: chamber-orchestra/meta
source_path: AGENTS.md
repo: https://github.com/chamber-orchestra/meta
---
# Repository Guidelines
## Project Structure & Module Organization
- Entity layer (`src/Entity/`) provides `MetaTrait` and `RobotsBehaviour` enum under `ChamberOrchestra\Meta`.
- Tests belong in `tests/` (autoloaded as `Tests\`); tools are in `bin/` (`bin/phpunit`).
- Autoloading is PSR-4 from `src/`.
- Requirements: PHP 8.5+, Doctrine ORM ^3.0, Symfony 8.0.
## Build, Test, and Development Commands
- Install dependencies: `composer install`.
- Run the suite: `./bin/phpunit` (uses `phpunit.xml.dist`). Add `--filter ClassNameTest` or `--filter testMethodName` to scope.
- `composer test` is an alias for `vendor/bin/phpunit`.
- Quick lint: `php -l path/to/File.php`; keep code PSR-12 even though no fixer is bundled.
## Coding Style & Naming Conventions
- Follow PSR-12: 4-space indent, one class per file, strict types (`declare(strict_types=1);`).
- Use typed properties and return types; favor `readonly` where appropriate.
- Keep constructors light; prefer small, composable services injected via Symfony DI.
## Testing Guidelines
- Use PHPUnit (13.x). Name files `*Test.php` mirroring the class under test.
- Unit tests live in `tests/Unit/` extending `TestCase`.
- Keep tests deterministic; use data providers where appropriate.
- Cover entity trait behavior, enum choices/formatting, and edge cases.
## Commit & Pull Request Guidelines
- Commit messages: short, action-oriented, optionally bracketed scope (e.g., `[fix] handle null meta description`, `[master] bump version`).
- Keep commits focused; avoid unrelated formatting churn.
- Pull requests should include: purpose summary, key changes, test results.
src/Entity/) provides MetaTrait and RobotsBehaviour enum under ChamberOrchestra\Meta.tests/ (autoloaded as Tests\); tools are in bin/ (bin/phpunit).src/.composer install../bin/phpunit (uses phpunit.xml.dist). Add --filter ClassNameTest or --filter testMethodName to scope.composer test is an alias for vendor/bin/phpunit.php -l path/to/File.php; keep code PSR-12 even though no fixer is bundled.declare(strict_types=1);).readonly where appropriate.*Test.php mirroring the class under test.tests/Unit/ extending TestCase.[fix] handle null meta description, [master] bump version).How can I help you explore Laravel packages today?