Skip to content

Commit

Permalink
Don't re-add the ENQUEUE_DSN from the bundle - just suggest
Browse files Browse the repository at this point in the history
  • Loading branch information
weaverryan committed Jan 8, 2019
1 parent 6a53d94 commit 4473b8f
Show file tree
Hide file tree
Showing 41 changed files with 168 additions and 113 deletions.
6 changes: 1 addition & 5 deletions enqueue/amqp-bunny/0.7/manifest.json
@@ -1,5 +1 @@
{
"env": {
"ENQUEUE_DSN": "amqp+bunny://"
}
}
{}
9 changes: 9 additions & 0 deletions enqueue/amqp-bunny/0.7/post-install.txt
@@ -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>
5 changes: 0 additions & 5 deletions enqueue/amqp-bunny/0.8/manifest.json

This file was deleted.

6 changes: 1 addition & 5 deletions enqueue/amqp-ext/0.4/manifest.json
@@ -1,5 +1 @@
{
"env": {
"ENQUEUE_DSN": "amqp://"
}
}
{}
9 changes: 9 additions & 0 deletions enqueue/amqp-ext/0.4/post-install.txt
@@ -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>
6 changes: 1 addition & 5 deletions enqueue/amqp-ext/0.7/manifest.json
@@ -1,5 +1 @@
{
"env": {
"ENQUEUE_DSN": "amqp+ext://"
}
}
{}
9 changes: 9 additions & 0 deletions enqueue/amqp-ext/0.7/post-install.txt
@@ -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>
5 changes: 0 additions & 5 deletions enqueue/amqp-ext/0.8/manifest.json

This file was deleted.

6 changes: 1 addition & 5 deletions enqueue/amqp-lib/0.7/manifest.json
@@ -1,5 +1 @@
{
"env": {
"ENQUEUE_DSN": "amqp+lib://"
}
}
{}
9 changes: 9 additions & 0 deletions enqueue/amqp-lib/0.7/post-install.txt
@@ -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>
5 changes: 0 additions & 5 deletions enqueue/amqp-lib/0.8/manifest.json

This file was deleted.

6 changes: 1 addition & 5 deletions enqueue/dbal/0.4/manifest.json
@@ -1,5 +1 @@
{
"env": {
"ENQUEUE_DSN": "mysql://"
}
}
{}
13 changes: 13 additions & 0 deletions enqueue/dbal/0.4/post-install.txt
@@ -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>
5 changes: 0 additions & 5 deletions enqueue/dbal/0.8/manifest.json

This file was deleted.

2 changes: 1 addition & 1 deletion enqueue/enqueue-bundle/0.4/config/packages/enqueue.yaml
@@ -1,4 +1,4 @@
enqueue:
transport:
default: '%env(ENQUEUE_DSN)%'
default: '%env(resolve:ENQUEUE_DSN)%'
client: ~
2 changes: 1 addition & 1 deletion enqueue/enqueue-bundle/0.9/config/packages/enqueue.yaml
@@ -1,4 +1,4 @@
enqueue:
default:
transport: '%env(ENQUEUE_DSN)%'
transport: '%env(resolve:ENQUEUE_DSN)%'
client: ~
6 changes: 1 addition & 5 deletions enqueue/fs/0.4/manifest.json
@@ -1,5 +1 @@
{
"env": {
"ENQUEUE_DSN": "file://%VAR_DIR%/enqueue"
}
}
{}
9 changes: 9 additions & 0 deletions enqueue/fs/0.4/post-install.txt
@@ -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>
5 changes: 0 additions & 5 deletions enqueue/fs/0.8/manifest.json

This file was deleted.

6 changes: 1 addition & 5 deletions enqueue/gearman/0.7/manifest.json
@@ -1,5 +1 @@
{
"env": {
"ENQUEUE_DSN": "gearman://"
}
}
{}
9 changes: 9 additions & 0 deletions enqueue/gearman/0.7/post-install.txt
@@ -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>
5 changes: 0 additions & 5 deletions enqueue/gearman/0.8/manifest.json

This file was deleted.

2 changes: 1 addition & 1 deletion enqueue/gps/0.7/manifest.json
@@ -1,5 +1,5 @@
{
"env": {
"ENQUEUE_DSN": "gps:"
"PUBSUB_EMULATOR_HOST": "http://localhost:8900"
}
}
11 changes: 11 additions & 0 deletions enqueue/gps/0.7/post-install.txt
@@ -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>
6 changes: 1 addition & 5 deletions enqueue/mongodb/0.8/manifest.json
@@ -1,5 +1 @@
{
"env": {
"ENQUEUE_DSN": "mongodb:"
}
}
{}
9 changes: 9 additions & 0 deletions enqueue/mongodb/0.8/post-install.txt
@@ -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>
6 changes: 1 addition & 5 deletions enqueue/pheanstalk/0.5/manifest.json
@@ -1,5 +1 @@
{
"env": {
"ENQUEUE_DSN": "beanstalk://"
}
}
{}
9 changes: 9 additions & 0 deletions enqueue/pheanstalk/0.5/post-install.txt
@@ -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>
5 changes: 0 additions & 5 deletions enqueue/pheanstalk/0.8/manifest.json

This file was deleted.

6 changes: 1 addition & 5 deletions enqueue/rdkafka/0.7/manifest.json
@@ -1,5 +1 @@
{
"env": {
"ENQUEUE_DSN": "rdkafka://"
}
}
{}
9 changes: 9 additions & 0 deletions enqueue/rdkafka/0.7/post-install.txt
@@ -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>
6 changes: 1 addition & 5 deletions enqueue/rdkafka/0.8/manifest.json
@@ -1,5 +1 @@
{
"env": {
"ENQUEUE_DSN": "kafka:"
}
}
{}
9 changes: 9 additions & 0 deletions enqueue/rdkafka/0.8/post-install.txt
@@ -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>
6 changes: 1 addition & 5 deletions enqueue/redis/0.7/manifest.json
@@ -1,5 +1 @@
{
"env": {
"ENQUEUE_DSN": "redis:"
}
}
{}
9 changes: 9 additions & 0 deletions enqueue/redis/0.7/post-install.txt
@@ -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>
6 changes: 1 addition & 5 deletions enqueue/sqs/0.7/manifest.json
@@ -1,5 +1 @@
{
"env": {
"ENQUEUE_DSN": "sqs:"
}
}
{}
9 changes: 9 additions & 0 deletions enqueue/sqs/0.7/post-install.txt
@@ -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&region=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>
6 changes: 1 addition & 5 deletions enqueue/stomp/0.7/manifest.json
@@ -1,5 +1 @@
{
"env": {
"ENQUEUE_DSN": "stomp:"
}
}
{}
9 changes: 9 additions & 0 deletions enqueue/stomp/0.7/post-install.txt
@@ -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>
6 changes: 1 addition & 5 deletions enqueue/wamp/0.9/manifest.json
@@ -1,5 +1 @@
{
"env": {
"ENQUEUE_DSN": "wamp:"
}
}
{}
9 changes: 9 additions & 0 deletions enqueue/wamp/0.9/post-install.txt
@@ -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>

0 comments on commit 4473b8f

Please sign in to comment.