├── .github ├── FUNDING.yml └── workflows │ ├── fabbot.yml │ ├── static-analysis.yml │ └── unit-tests.yml ├── .php-cs-fixer.dist.php ├── CHANGELOG.md ├── LICENSE ├── README.md ├── composer.json └── src ├── DataCollector └── MercureDataCollector.php ├── DependencyInjection ├── CompilerPass │ └── StimulusHelperPass.php ├── Configuration.php └── MercureExtension.php ├── MercureBundle.php └── Resources └── views ├── Collector └── mercure.html.twig └── Icon └── mercure.svg /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [dunglas] 2 | tidelift: "packagist/symfony/mercure-bundle" 3 | -------------------------------------------------------------------------------- /.github/workflows/fabbot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/mercure-bundle/HEAD/.github/workflows/fabbot.yml -------------------------------------------------------------------------------- /.github/workflows/static-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/mercure-bundle/HEAD/.github/workflows/static-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/unit-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/mercure-bundle/HEAD/.github/workflows/unit-tests.yml -------------------------------------------------------------------------------- /.php-cs-fixer.dist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/mercure-bundle/HEAD/.php-cs-fixer.dist.php -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/mercure-bundle/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/mercure-bundle/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/mercure-bundle/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/mercure-bundle/HEAD/composer.json -------------------------------------------------------------------------------- /src/DataCollector/MercureDataCollector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/mercure-bundle/HEAD/src/DataCollector/MercureDataCollector.php -------------------------------------------------------------------------------- /src/DependencyInjection/CompilerPass/StimulusHelperPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/mercure-bundle/HEAD/src/DependencyInjection/CompilerPass/StimulusHelperPass.php -------------------------------------------------------------------------------- /src/DependencyInjection/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/mercure-bundle/HEAD/src/DependencyInjection/Configuration.php -------------------------------------------------------------------------------- /src/DependencyInjection/MercureExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/mercure-bundle/HEAD/src/DependencyInjection/MercureExtension.php -------------------------------------------------------------------------------- /src/MercureBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/mercure-bundle/HEAD/src/MercureBundle.php -------------------------------------------------------------------------------- /src/Resources/views/Collector/mercure.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/mercure-bundle/HEAD/src/Resources/views/Collector/mercure.html.twig -------------------------------------------------------------------------------- /src/Resources/views/Icon/mercure.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/mercure-bundle/HEAD/src/Resources/views/Icon/mercure.svg --------------------------------------------------------------------------------