Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Contributing To This Repo
If you are New to Github, This is a guideline how to contribute [Setting Guidelines](https://help.github.com/articles/setting-guidelines-for-repository-contributors/)

## Installation
Install this bundle with composer
```shell
composer require afrihost/base-command-bundle
```
Next, enable the bundle by adding it to the list of registered bundles in the app/AppKernel.php file of your project:
```php
// in AppKernel::registerBundles()
$bundles = array(
// there should be a bunch of symfony bundles and your bundles already added here
new Afrihost\BaseCommandBundle\AfrihostBaseCommandBundle(),
// ...
);
```

## Futher Instruction

For Futher Insctruction about this package visit [ReadMe](https://github.com/afrihost/BaseCommandBundle/blob/master/README.md)