We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents dd5f97f + 7221138 commit a619552Copy full SHA for a619552
1 file changed
README.md
@@ -5,6 +5,34 @@ This bundle provides a way to generate software licenses for a given payload.
5
6
It has been inspired by the [Promotion Bundle](https://github.com/Sylius/SyliusPromotionBundle) of Sylius.
7
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
36
How to get started?
37
-------------------
38
@@ -98,3 +126,4 @@ To make such a subject you can implement the SubjectInterface.
98
126
}
99
127
100
128
```
129
0 commit comments