Skip to content

Commit 8d2bc44

Browse files
authored
Merge pull request #11 from alexander-schranz/patch-1
Fix link to installation and update code styling
2 parents 696e9c2 + 37b44c1 commit 8d2bc44

File tree

2 files changed

+13
-7
lines changed

2 files changed

+13
-7
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ $response = new Response(
2525
);
2626
```
2727

28-
[Installation](Resources/docs/configuration_reference.md)
28+
[Installation](Resources/docs/install.md)
2929

3030
[Configuration reference](Resources/docs/configuration_reference.md)
3131

Resources/docs/install.md

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,21 @@
22

33
### Composer ###
44

5-
"padam87/rasterize-bundle": "~1.0",
5+
```json
6+
"padam87/rasterize-bundle": "~1.0",
7+
```
68

79
### AppKernel ###
810

9-
$bundles = array(
10-
...
11-
new Padam87\RasterizeBundle\Padam87RasterizeBundle(),
12-
);
11+
```php
12+
$bundles = array(
13+
// ...
14+
new Padam87\RasterizeBundle\Padam87RasterizeBundle(),
15+
);
16+
```
1317

1418
### Install assets ###
1519

16-
php app/console assets:install
20+
```bash
21+
php app/console assets:install
22+
```

0 commit comments

Comments
 (0)