Skip to content

Commit a619552

Browse files
committed
Merge branch 'master' of github.com:Intracto/SmartCodeBundle
2 parents dd5f97f + 7221138 commit a619552

1 file changed

Lines changed: 29 additions & 0 deletions

File tree

README.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,34 @@ This bundle provides a way to generate software licenses for a given payload.
55

66
It has been inspired by the [Promotion Bundle](https://github.com/Sylius/SyliusPromotionBundle) of Sylius.
77

8+
How to install?
9+
---------------
10+
Install the bundle via composer
11+
```
12+
composer require intracto/smartcode-bundle
13+
```
14+
Enable the bundle
15+
```
16+
// app/AppKernel.php
17+
18+
// ...
19+
class AppKernel extends Kernel
20+
{
21+
// ...
22+
23+
public function registerBundles()
24+
{
25+
$bundles = array(
26+
// ...,
27+
new Intracto\SmartCodeBundle\SmartCodeBundle(),
28+
);
29+
30+
// ...
31+
}
32+
}
33+
```
34+
35+
836
How to get started?
937
-------------------
1038

@@ -98,3 +126,4 @@ To make such a subject you can implement the SubjectInterface.
98126
}
99127
100128
```
129+

0 commit comments

Comments
 (0)