Skip to content

Commit

Permalink
Merge branch 'master' of github.com:Intracto/SmartCodeBundle
Browse files Browse the repository at this point in the history
  • Loading branch information
pix-art committed May 12, 2015
2 parents dd5f97f + 7221138 commit a619552
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,34 @@ This bundle provides a way to generate software licenses for a given payload.

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

How to install?
---------------
Install the bundle via composer
```
composer require intracto/smartcode-bundle
```
Enable the bundle
```
// app/AppKernel.php
// ...
class AppKernel extends Kernel
{
// ...
public function registerBundles()
{
$bundles = array(
// ...,
new Intracto\SmartCodeBundle\SmartCodeBundle(),
);
// ...
}
}
```


How to get started?
-------------------

Expand Down Expand Up @@ -98,3 +126,4 @@ To make such a subject you can implement the SubjectInterface.
}
```

0 comments on commit a619552

Please sign in to comment.