This is a PHP 8.5 library with PSR-4 autoloading (Dev\\MetadataBundle\\ mapped to the repo root).
Key directories:
src/ holds the library code, organized by feature areas such as DependencyInjection/, EventSubscriber/, Mapping/, and Reader/.src/Resources/ contains framework resources and configuration assets.tests/Integrational/ and tests/Unit/ hold PHPUnit tests (current coverage is minimal).bin/phpunit is the local PHPUnit runner.Use Composer to install dependencies and run tests:
composer install installs PHP dependencies into vendor/.bin/phpunit runs the test suite using phpunit.xml.dist (bootstraps vendor/autoload.php).bin/phpunit --filter SomeTest runs a focused subset of tests by class or method.PascalCase for classes (MetadataReader), camelCase for methods (loadMetadata), and snake_case only when required by external APIs.src/.phpunit.xml.dist).tests/Unit/ and integration tests in tests/Integrational/.Test (e.g., ReaderTest).bin/phpunit before opening a PR.APP_ENV=test and APP_DEBUG=true for tests; avoid hard-coding environment values in production code.How can I help you explore Laravel packages today?