├── .github └── FUNDING.yml ├── LICENSE ├── README.md ├── composer.json ├── config └── services.php ├── phpstan.dist.neon └── src ├── Command ├── IndexCreateCommand.php ├── IndexDropCommand.php └── ReindexCommand.php └── SealBundle.php /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [alexander-schranz] 2 | custom: ["https://paypal.me/L91"] 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHP-CMSIG/seal-symfony-bundle/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHP-CMSIG/seal-symfony-bundle/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHP-CMSIG/seal-symfony-bundle/HEAD/composer.json -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHP-CMSIG/seal-symfony-bundle/HEAD/config/services.php -------------------------------------------------------------------------------- /phpstan.dist.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHP-CMSIG/seal-symfony-bundle/HEAD/phpstan.dist.neon -------------------------------------------------------------------------------- /src/Command/IndexCreateCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHP-CMSIG/seal-symfony-bundle/HEAD/src/Command/IndexCreateCommand.php -------------------------------------------------------------------------------- /src/Command/IndexDropCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHP-CMSIG/seal-symfony-bundle/HEAD/src/Command/IndexDropCommand.php -------------------------------------------------------------------------------- /src/Command/ReindexCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHP-CMSIG/seal-symfony-bundle/HEAD/src/Command/ReindexCommand.php -------------------------------------------------------------------------------- /src/SealBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHP-CMSIG/seal-symfony-bundle/HEAD/src/SealBundle.php --------------------------------------------------------------------------------