mirror of
https://github.com/symfony/recipes-contrib.git
synced 2026-09-14 16:46:30 +03:00
Don't re-add the ENQUEUE_DSN from the bundle - just suggest
This commit is contained in:
@@ -1,5 +1 @@
|
||||
{
|
||||
"env": {
|
||||
"ENQUEUE_DSN": "amqp+bunny://"
|
||||
}
|
||||
}
|
||||
{}
|
||||
|
||||
@@ -0,0 +1,9 @@
|
||||
<bg=yellow;fg=black> </>
|
||||
<bg=yellow;fg=black> Using amqp-bunny in Enqueue </>
|
||||
<bg=yellow;fg=black> </>
|
||||
|
||||
* Configure <comment>ENQUEUE_DSN=amqp+bunny://guest:guest@localhost:5672/%2f</comment>
|
||||
in your <comment>.env</comment> file.
|
||||
|
||||
* For the full options, see
|
||||
<comment>https://github.com/php-enqueue/enqueue-dev/blob/master/docs/transport/amqp_bunny.md</comment>
|
||||
@@ -1,5 +0,0 @@
|
||||
{
|
||||
"env": {
|
||||
"ENQUEUE_DSN": "amqp+bunny:"
|
||||
}
|
||||
}
|
||||
@@ -1,5 +1 @@
|
||||
{
|
||||
"env": {
|
||||
"ENQUEUE_DSN": "amqp://"
|
||||
}
|
||||
}
|
||||
{}
|
||||
|
||||
@@ -0,0 +1,9 @@
|
||||
<bg=yellow;fg=black> </>
|
||||
<bg=yellow;fg=black> Using amqp-ext in Enqueue </>
|
||||
<bg=yellow;fg=black> </>
|
||||
|
||||
* Configure <comment>ENQUEUE_DSN=amqp://user:pass@example.com:10000/%2f</comment>
|
||||
in your <comment>.env</comment> file.
|
||||
|
||||
* For the full options, see
|
||||
<comment>https://github.com/php-enqueue/enqueue-dev/blob/master/docs/transport/amqp.md</comment>
|
||||
@@ -1,5 +1 @@
|
||||
{
|
||||
"env": {
|
||||
"ENQUEUE_DSN": "amqp+ext://"
|
||||
}
|
||||
}
|
||||
{}
|
||||
|
||||
@@ -0,0 +1,9 @@
|
||||
<bg=yellow;fg=black> </>
|
||||
<bg=yellow;fg=black> Using amqp-ext in Enqueue </>
|
||||
<bg=yellow;fg=black> </>
|
||||
|
||||
* Configure <comment>ENQUEUE_DSN=amqp+ext://user:pass@example.com:10000/%2f</comment>
|
||||
in your <comment>.env</comment> file.
|
||||
|
||||
* For the full options, see
|
||||
<comment>https://github.com/php-enqueue/enqueue-dev/blob/master/docs/transport/amqp.md</comment>
|
||||
@@ -1,5 +0,0 @@
|
||||
{
|
||||
"env": {
|
||||
"ENQUEUE_DSN": "amqp+ext:"
|
||||
}
|
||||
}
|
||||
@@ -1,5 +1 @@
|
||||
{
|
||||
"env": {
|
||||
"ENQUEUE_DSN": "amqp+lib://"
|
||||
}
|
||||
}
|
||||
{}
|
||||
|
||||
@@ -0,0 +1,9 @@
|
||||
<bg=yellow;fg=black> </>
|
||||
<bg=yellow;fg=black> Using amqp-lib in Enqueue </>
|
||||
<bg=yellow;fg=black> </>
|
||||
|
||||
* Configure <comment>ENQUEUE_DSN=amqp+lib://user:pass@example.com:10000/%2f</comment>
|
||||
in your <comment>.env</comment> file.
|
||||
|
||||
* For the full options, see
|
||||
<comment>https://github.com/php-enqueue/enqueue-dev/blob/master/docs/transport/amqp_lib.md</comment>
|
||||
@@ -1,5 +0,0 @@
|
||||
{
|
||||
"env": {
|
||||
"ENQUEUE_DSN": "amqp+lib:"
|
||||
}
|
||||
}
|
||||
@@ -1,5 +1 @@
|
||||
{
|
||||
"env": {
|
||||
"ENQUEUE_DSN": "mysql://"
|
||||
}
|
||||
}
|
||||
{}
|
||||
|
||||
@@ -0,0 +1,13 @@
|
||||
<bg=yellow;fg=black> </>
|
||||
<bg=yellow;fg=black> Using Doctrine's dbal in Enqueue </>
|
||||
<bg=yellow;fg=black> </>
|
||||
|
||||
* Configure <comment>ENQUEUE_DSN=mysql://user:pass@localhost:3306/mqdev</comment>
|
||||
in your <comment>.env</comment> file.
|
||||
|
||||
* Or, to re-use the <comment>DATABASE_URL</comment> environment variable, edit
|
||||
the <comment>config/packages/enqueue.yaml</comment> file and change to
|
||||
<comment>transport: %env(resolve:DATABASE_URL)%</comment>.
|
||||
|
||||
* For the full options, see
|
||||
<comment>https://github.com/php-enqueue/enqueue-dev/blob/master/docs/transport/dbal.md</comment>
|
||||
@@ -1,5 +0,0 @@
|
||||
{
|
||||
"env": {
|
||||
"ENQUEUE_DSN": "mysql:"
|
||||
}
|
||||
}
|
||||
@@ -1,4 +1,4 @@
|
||||
enqueue:
|
||||
transport:
|
||||
default: '%env(ENQUEUE_DSN)%'
|
||||
default: '%env(resolve:ENQUEUE_DSN)%'
|
||||
client: ~
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
enqueue:
|
||||
default:
|
||||
transport: '%env(ENQUEUE_DSN)%'
|
||||
transport: '%env(resolve:ENQUEUE_DSN)%'
|
||||
client: ~
|
||||
|
||||
@@ -1,5 +1 @@
|
||||
{
|
||||
"env": {
|
||||
"ENQUEUE_DSN": "file://%VAR_DIR%/enqueue"
|
||||
}
|
||||
}
|
||||
{}
|
||||
|
||||
@@ -0,0 +1,9 @@
|
||||
<bg=yellow;fg=black> </>
|
||||
<bg=yellow;fg=black> Using fs (filesystem) in Enqueue </>
|
||||
<bg=yellow;fg=black> </>
|
||||
|
||||
* Configure <comment>ENQUEUE_DSN=file://%kernel.project_dir%/var/queue</comment>
|
||||
in your <comment>.env</comment> file.
|
||||
|
||||
* For the full options, see
|
||||
<comment>https://github.com/php-enqueue/enqueue-dev/blob/master/docs/transport/filesystem.md</comment>
|
||||
@@ -1,5 +0,0 @@
|
||||
{
|
||||
"env": {
|
||||
"ENQUEUE_DSN": "file:///%VAR_DIR%/enqueue"
|
||||
}
|
||||
}
|
||||
@@ -1,5 +1 @@
|
||||
{
|
||||
"env": {
|
||||
"ENQUEUE_DSN": "gearman://"
|
||||
}
|
||||
}
|
||||
{}
|
||||
|
||||
@@ -0,0 +1,9 @@
|
||||
<bg=yellow;fg=black> </>
|
||||
<bg=yellow;fg=black> Using Gearman in Enqueue </>
|
||||
<bg=yellow;fg=black> </>
|
||||
|
||||
* Configure <comment>ENQUEUE_DSN=gearman://example:5555</comment>
|
||||
in your <comment>.env</comment> file.
|
||||
|
||||
* For the full options, see
|
||||
<comment>https://github.com/php-enqueue/enqueue-dev/blob/master/docs/transport/gearman.md</comment>
|
||||
@@ -1,5 +0,0 @@
|
||||
{
|
||||
"env": {
|
||||
"ENQUEUE_DSN": "gearman:"
|
||||
}
|
||||
}
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"env": {
|
||||
"ENQUEUE_DSN": "gps:"
|
||||
"PUBSUB_EMULATOR_HOST": "http://localhost:8900"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,11 @@
|
||||
<bg=yellow;fg=black> </>
|
||||
<bg=yellow;fg=black> Using Google Pub Sub in Enqueue </>
|
||||
<bg=yellow;fg=black> </>
|
||||
|
||||
* Configure <comment>ENQUEUE_DSN=gps:</comment> in your <comment>.env</comment> file.
|
||||
|
||||
* Also configure the <comment>PUBSUB_EMULATOR_HOST</comment> environment
|
||||
variable in <comment>.env</comment>.
|
||||
|
||||
* For the full options, see
|
||||
<comment>https://github.com/php-enqueue/enqueue-dev/blob/master/docs/transport/gps.md</comment>
|
||||
@@ -1,5 +1 @@
|
||||
{
|
||||
"env": {
|
||||
"ENQUEUE_DSN": "mongodb:"
|
||||
}
|
||||
}
|
||||
{}
|
||||
|
||||
@@ -0,0 +1,9 @@
|
||||
<bg=yellow;fg=black> </>
|
||||
<bg=yellow;fg=black> Using MongoDB in Enqueue </>
|
||||
<bg=yellow;fg=black> </>
|
||||
|
||||
* Configure <comment>ENQUEUE_DSN=mongodb://localhost:27017/db_name</comment>
|
||||
in your <comment>.env</comment> file.
|
||||
|
||||
* For the full options, see
|
||||
<comment>https://github.com/php-enqueue/enqueue-dev/blob/master/docs/transport/mongodb.md</comment>
|
||||
@@ -1,5 +1 @@
|
||||
{
|
||||
"env": {
|
||||
"ENQUEUE_DSN": "beanstalk://"
|
||||
}
|
||||
}
|
||||
{}
|
||||
|
||||
@@ -0,0 +1,9 @@
|
||||
<bg=yellow;fg=black> </>
|
||||
<bg=yellow;fg=black> Using Beanstalk (Pheanstalk) in Enqueue </>
|
||||
<bg=yellow;fg=black> </>
|
||||
|
||||
* Configure <comment>ENQUEUE_DSN=beanstalk://example:5555</comment>
|
||||
in your <comment>.env</comment> file.
|
||||
|
||||
* For the full options, see
|
||||
<comment>https://github.com/php-enqueue/enqueue-dev/blob/master/docs/transport/pheanstalk.md</comment>
|
||||
@@ -1,5 +0,0 @@
|
||||
{
|
||||
"env": {
|
||||
"ENQUEUE_DSN": "beanstalk:"
|
||||
}
|
||||
}
|
||||
@@ -1,5 +1 @@
|
||||
{
|
||||
"env": {
|
||||
"ENQUEUE_DSN": "rdkafka://"
|
||||
}
|
||||
}
|
||||
{}
|
||||
|
||||
@@ -0,0 +1,9 @@
|
||||
<bg=yellow;fg=black> </>
|
||||
<bg=yellow;fg=black> Using Kafka in Enqueue </>
|
||||
<bg=yellow;fg=black> </>
|
||||
|
||||
* Configure <comment>ENQUEUE_DSN=rdkafka://</comment>
|
||||
in your <comment>.env</comment> file.
|
||||
|
||||
* For the full options, see
|
||||
<comment>https://github.com/php-enqueue/enqueue-dev/blob/master/docs/transport/kafka.md</comment>
|
||||
@@ -1,5 +1 @@
|
||||
{
|
||||
"env": {
|
||||
"ENQUEUE_DSN": "kafka:"
|
||||
}
|
||||
}
|
||||
{}
|
||||
|
||||
@@ -0,0 +1,9 @@
|
||||
<bg=yellow;fg=black> </>
|
||||
<bg=yellow;fg=black> Using Kafka in Enqueue </>
|
||||
<bg=yellow;fg=black> </>
|
||||
|
||||
* Configure <comment>ENQUEUE_DSN=kafka://</comment>
|
||||
in your <comment>.env</comment> file.
|
||||
|
||||
* For the full options, see
|
||||
<comment>https://github.com/php-enqueue/enqueue-dev/blob/master/docs/transport/kafka.md</comment>
|
||||
@@ -1,5 +1 @@
|
||||
{
|
||||
"env": {
|
||||
"ENQUEUE_DSN": "redis:"
|
||||
}
|
||||
}
|
||||
{}
|
||||
|
||||
@@ -0,0 +1,9 @@
|
||||
<bg=yellow;fg=black> </>
|
||||
<bg=yellow;fg=black> Using Redis in Enqueue </>
|
||||
<bg=yellow;fg=black> </>
|
||||
|
||||
* Configure <comment>ENQUEUE_DSN=redis://example.com:1000</comment>
|
||||
in your <comment>.env</comment> file.
|
||||
|
||||
* For the full options, see
|
||||
<comment>https://github.com/php-enqueue/enqueue-dev/blob/master/docs/transport/redis.md</comment>
|
||||
@@ -1,5 +1 @@
|
||||
{
|
||||
"env": {
|
||||
"ENQUEUE_DSN": "sqs:"
|
||||
}
|
||||
}
|
||||
{}
|
||||
|
||||
@@ -0,0 +1,9 @@
|
||||
<bg=yellow;fg=black> </>
|
||||
<bg=yellow;fg=black> Using Amazon SQS in Enqueue </>
|
||||
<bg=yellow;fg=black> </>
|
||||
|
||||
* Configure <comment>ENQUEUE_DSN=sqs:?key=aKey&secret=aSecret®ion=aRegion</comment>
|
||||
in your <comment>.env</comment> file.
|
||||
|
||||
* For the full options, see
|
||||
<comment>https://github.com/php-enqueue/enqueue-dev/blob/master/docs/transport/sqs.md</comment>
|
||||
@@ -1,5 +1 @@
|
||||
{
|
||||
"env": {
|
||||
"ENQUEUE_DSN": "stomp:"
|
||||
}
|
||||
}
|
||||
{}
|
||||
|
||||
@@ -0,0 +1,9 @@
|
||||
<bg=yellow;fg=black> </>
|
||||
<bg=yellow;fg=black> Using STOMP in Enqueue </>
|
||||
<bg=yellow;fg=black> </>
|
||||
|
||||
* Configure <comment>ENQUEUE_DSN=stomp://example.com:1000?login=theLogin</comment>
|
||||
in your <comment>.env</comment> file.
|
||||
|
||||
* For the full options, see
|
||||
<comment>https://github.com/php-enqueue/enqueue-dev/blob/master/docs/transport/stomp.md</comment>
|
||||
@@ -1,5 +1 @@
|
||||
{
|
||||
"env": {
|
||||
"ENQUEUE_DSN": "wamp:"
|
||||
}
|
||||
}
|
||||
{}
|
||||
|
||||
@@ -0,0 +1,9 @@
|
||||
<bg=yellow;fg=black> </>
|
||||
<bg=yellow;fg=black> Using Web Application Messaging Protocol (WAMP) in Enqueue </>
|
||||
<bg=yellow;fg=black> </>
|
||||
|
||||
* Configure <comment>ENQUEUE_DSN=wamp://127.0.0.1:9090</comment>
|
||||
in your <comment>.env</comment> file.
|
||||
|
||||
* For the full options, see
|
||||
<comment>https://github.com/php-enqueue/enqueue-dev/blob/master/docs/transport/wamp.md</comment>
|
||||
Reference in New Issue
Block a user