├── .gitignore ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── art └── example.png ├── composer.json ├── phpstan.neon ├── phpunit.xml ├── src ├── DependencyInjection │ ├── Configuration.php │ └── GeminiExtension.php ├── GeminiBundle.php └── Resources │ └── config │ └── services.php └── tests └── DependencyInjection └── GeminiExtensionTest.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-gemini-php/symfony/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-gemini-php/symfony/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-gemini-php/symfony/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-gemini-php/symfony/HEAD/README.md -------------------------------------------------------------------------------- /art/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-gemini-php/symfony/HEAD/art/example.png -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-gemini-php/symfony/HEAD/composer.json -------------------------------------------------------------------------------- /phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-gemini-php/symfony/HEAD/phpstan.neon -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-gemini-php/symfony/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/DependencyInjection/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-gemini-php/symfony/HEAD/src/DependencyInjection/Configuration.php -------------------------------------------------------------------------------- /src/DependencyInjection/GeminiExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-gemini-php/symfony/HEAD/src/DependencyInjection/GeminiExtension.php -------------------------------------------------------------------------------- /src/GeminiBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-gemini-php/symfony/HEAD/src/GeminiBundle.php -------------------------------------------------------------------------------- /src/Resources/config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-gemini-php/symfony/HEAD/src/Resources/config/services.php -------------------------------------------------------------------------------- /tests/DependencyInjection/GeminiExtensionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-gemini-php/symfony/HEAD/tests/DependencyInjection/GeminiExtensionTest.php --------------------------------------------------------------------------------