Skip to content

Commit 76626e1

Browse files
author
Keith Kirk
committed
Merge pull request uecode#18 from uecode/updated-docs
fix for documentation
2 parents 2894542 + 9f8a716 commit 76626e1

File tree

11 files changed

+21
-15
lines changed

11 files changed

+21
-15
lines changed

README.md

Lines changed: 15 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8,23 +8,26 @@ This bundle allows you to easily consume messages from Push Queues by simply
88
tagging your services and relying on Symfony's event dispatching - without
99
needing to run a daemon or background process to continuously poll your queue.
1010

11-
**You can find the full documentation at [qpush-bundle.readthedocs.org](http://qpush-bundle.rtfd.org)**
11+
**Full Documentation:** [qpush-bundle.readthedocs.org](http://qpush-bundle.rtfd.org)
1212

1313
##Installation
1414

1515
The bundle should be installed through composer.
1616

17-
####Add the bundle to your `composer.json` file
17+
####Add the bundle to your composer.json file
1818

1919
```json
20-
"require": {
21-
"uecode/qpush-bundle": "~1.1.0",
20+
{
21+
"require": {
22+
"uecode/qpush-bundle": "~1.1",
23+
}
2224
}
2325
```
2426

2527
####Update AppKernel.php of your Symfony Application
2628

27-
Add the `UecodeQPushBundle` to your kernel bootstrap sequence, in the `$bundles` array.
29+
Add the `UecodeQPushBundle` to your kernel bootstrap sequence, in the `$bundles`
30+
array.
2831

2932
```php
3033
public function registerBundles()
@@ -41,8 +44,8 @@ public function registerBundles()
4144
##Basic Configuration:
4245

4346
Here is a basic configuration that would create a push queue called
44-
`my_queue_name` using AWS. You can read about the supported providers and
45-
provider options in the full documentation.
47+
`my_queue_name` using AWS or IronMQ. You can read about the supported providers
48+
and provider options in the full documentation.
4649

4750
######Example
4851

@@ -55,9 +58,12 @@ uecode_qpush:
5558
key: <aws api key>
5659
secret: <aws secret>
5760
region: us-east-1
61+
ironmq:
62+
token: <iron mq oauth token>
63+
project_id: <iron mq project id>
5864
queues:
5965
my_queue_name:
60-
provider: aws
66+
provider: aws #or ironmq
6167
options:
6268
push_notifications: true
6369
subscribers:
@@ -121,7 +127,7 @@ public function onMessageReceived(MessageEvent $event)
121127
```
122128

123129
The `Message` objects contain the provider specific message id, a message body,
124-
and a collection of provider specific `metadata`.
130+
and a collection of provider specific metadata.
125131

126132
These properties are accessible through simple getters.
127133

0 Bytes
Binary file not shown.
-322 Bytes
Binary file not shown.

docs/_build/doctrees/index.doctree

-2 Bytes
Binary file not shown.
-4 Bytes
Binary file not shown.

docs/_build/html/_sources/configuration.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Providers may have their own dependencies that should be added to your ``compose
1818
For specific instructions on how to configure each provider, please view their documents.
1919

2020
.. toctree::
21-
:maxdepth: 1
21+
:maxdepth: 2
2222

2323
aws-provider
2424
iron-mq-provider

docs/_build/html/_sources/installation.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ The bundle should be installed through composer.
99

1010
{
1111
"require": {
12-
"uecode/qpush-bundle": "~1.1.0",
12+
"uecode/qpush-bundle": "~1.1",
1313
}
1414
}
1515

docs/_build/html/installation.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ <h1>Installation<a class="headerlink" href="#installation" title="Permalink to t
5757
<p><strong>Add the bundle to composer</strong></p>
5858
<div class="highlight-js"><div class="highlight"><pre><span class="p">{</span>
5959
<span class="s2">&quot;require&quot;</span><span class="o">:</span> <span class="p">{</span>
60-
<span class="s2">&quot;uecode/qpush-bundle&quot;</span><span class="o">:</span> <span class="s2">&quot;~1.1.0&quot;</span><span class="p">,</span>
60+
<span class="s2">&quot;uecode/qpush-bundle&quot;</span><span class="o">:</span> <span class="s2">&quot;~1.1&quot;</span><span class="p">,</span>
6161
<span class="p">}</span>
6262
<span class="p">}</span>
6363
</pre></div>

docs/_build/html/searchindex.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/configuration.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Providers may have their own dependencies that should be added to your ``compose
1818
For specific instructions on how to configure each provider, please view their documents.
1919

2020
.. toctree::
21-
:maxdepth: 1
21+
:maxdepth: 2
2222

2323
aws-provider
2424
iron-mq-provider

0 commit comments

Comments
 (0)