Skip to content
This repository was archived by the owner on Aug 8, 2021. It is now read-only.

Commit 252540e

Browse files
committed
README updated
1 parent b943c12 commit 252540e

1 file changed

Lines changed: 23 additions & 0 deletions

File tree

README.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,29 @@
1717
## Installation
1818
``` bash
1919
$ composer require --dev devtronic/cms-bundle
20+
```
21+
22+
```php
23+
<?php
24+
25+
use Symfony\Component\HttpKernel\Kernel;
26+
use Symfony\Component\Config\Loader\LoaderInterface;
27+
28+
class AppKernel extends Kernel
29+
{
30+
public function registerBundles()
31+
{
32+
$bundles = array(
33+
// ...
34+
35+
new Devtronic\CmsBundle\CmsBundle(),
36+
);
37+
// ...
38+
return $bundles;
39+
}
40+
// ...
41+
}
42+
2043
```
2144
## Configuration
2245
```yml

0 commit comments

Comments
 (0)