Gitingest

Summary

Directory Structure

Directory structure:
└── php-tmdb-symfony/
    ├── README.md
    ├── ClientConfiguration.php
    ├── composer.json
    ├── LICENSE
    ├── phpcs.xml.dist
    ├── phpstan.neon
    ├── phpunit.xml.dist
    ├── psalm.xml
    ├── TmdbSymfonyBundle.php
    ├── DependencyInjection/
    │   ├── Configuration.php
    │   ├── TmdbSymfonyExtension.php
    │   └── CompilerPass/
    │       ├── ConfigurationPass.php
    │       └── EventDispatchingPass.php
    ├── Resources/
    │   ├── config/
    │   │   ├── repositories.xml
    │   │   ├── services.xml
    │   │   └── twig.xml
    │   └── test/
    │       └── configuration.json
    ├── Tests/
    │   ├── DependencyInjection/
    │   │   ├── TestCase.php
    │   │   ├── TmdbSymfonyExtensionTest.php
    │   │   └── CompilerPass/
    │   │       ├── ConfigurationPassTest.php
    │   │       └── EventDispatchingPassTest.php
    │   └── Twig/
    │       └── TmdbExtensionTest.php
    ├── Twig/
    │   └── TmdbExtension.php
    └── .github/
        └── workflows/
            ├── coding-standards.yml
            └── continuous-integration.yml

Files Content