xaraya / with-symfony
There is no license information available for the latest version (2.9.0) of this package.
Integrate Xaraya with Symfony applications
Package info
github.com/xaraya-modules/with-symfony
Type:xaraya-module
pkg:composer/xaraya/with-symfony
2.9.0
2025-11-30 16:18 UTC
Requires
- php: >=8.4
- ext-ctype: *
- ext-iconv: *
- doctrine/doctrine-bundle: ^3.1
- doctrine/doctrine-migrations-bundle: ^3.7
- doctrine/orm: ^3.5
- symfony/console: ^7.4 || ^8.0
- symfony/doctrine-messenger: ^7.4 || ^8.0
- symfony/dotenv: ^7.4 || ^8.0
- symfony/flex: ^2.10
- symfony/framework-bundle: ^7.4 || ^8.0
- symfony/runtime: ^7.4 || ^8.0
- symfony/webhook: ^7.4 || ^8.0
- symfony/yaml: ^7.4 || ^8.0
Requires (Dev)
- phpunit/phpunit: ^12.4
- symfony/browser-kit: ^7.4 || ^8.0
- symfony/css-selector: ^7.4 || ^8.0
- symfony/maker-bundle: ^1.65
Conflicts
README
This is a basic Symfony Framework application with a Webhook request parser and matching Remote Event webhook listener
Note: the namespace was changed from App\ to Xaraya\SymfonyApp\ to avoid conflicts on loading with third party frameworks
To handle /webhook/hello-symfony requests:
- src/Webhook/:
hello-symfonyrequest parser - src/RemoteEvent/:
hello-symfonywebhook consumer - config/packages/framework.yaml:
hello-symfonywebhook routing
You could use one of the Symfony Mailer or Notifier packages and bundles as consumer, switch to async/queued messages with retries etc.
Adding webhooks
Use Symfony Maker to create new webhooks:
$ bin/console make:webhook github
created: src/Webhook/GithubRequestParser.php
created: src/RemoteEvent/GithubWebhookConsumer.php
updated: config/packages/webhook.yaml
Success!