We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 696e9c2 + 37b44c1 commit 8d2bc44Copy full SHA for 8d2bc44
2 files changed
README.md
@@ -25,7 +25,7 @@ $response = new Response(
25
);
26
```
27
28
-[Installation](Resources/docs/configuration_reference.md)
+[Installation](Resources/docs/install.md)
29
30
[Configuration reference](Resources/docs/configuration_reference.md)
31
Resources/docs/install.md
@@ -2,15 +2,21 @@
2
3
### Composer ###
4
5
- "padam87/rasterize-bundle": "~1.0",
+```json
6
+"padam87/rasterize-bundle": "~1.0",
7
+```
8
9
### AppKernel ###
10
- $bundles = array(
- ...
11
- new Padam87\RasterizeBundle\Padam87RasterizeBundle(),
12
- );
+```php
+$bundles = array(
13
+ // ...
14
+ new Padam87\RasterizeBundle\Padam87RasterizeBundle(),
15
+);
16
17
18
### Install assets ###
19
- php app/console assets:install
20
+```bash
21
+php app/console assets:install
22
0 commit comments