Skip to content

Commit d88ff5c

Browse files
committed
Update README.md
1 parent adf888e commit d88ff5c

1 file changed

Lines changed: 29 additions & 25 deletions

File tree

README.md

Lines changed: 29 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -4,20 +4,30 @@ FMBBCodeBundle
44
[PHP-Decoda](https://github.com/milesj/decoda) integration in Symfony2
55

66
A lightweight lexical string parser for BBCode styled markup.
7-
### Gitter chat ###
87

9-
[![Join the chat at https://gitter.im/helios-ag/FMBbCodeBundle](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/helios-ag/FMBbCodeBundle?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
8+
## Contributors
9+
10+
* **Alexandre Quercia [alquerci](https://github.com/alquerci)**
11+
* Gaiffe Antoine [toinouu](https://github.com/toinouu)
12+
* Luis Íñiguez [idetia](https://github.com/idetia)
13+
* Sebastian [slider](https://github.com/slider)
14+
* [olleyyy](https://github.com/olleyyy)
15+
* Dirk Olbertz [dolbertz](https://github.com/dolbertz)
16+
* Florian Krauthan [fkrauthan](https://github.com/fkrauthan)
17+
* [predakanga](https://github.com/predakanga)
18+
* Dan [piratadelfuturo](https://github.com/piratadelfuturo)
19+
1020

1121
### Code Quality Assurance ###
1222

13-
| SensioLabs Insight | Travis CI | Scrutinizer CI|
14-
| ------------------------|-------------|-----------------|
15-
| [![SensioLabsInsight](https://insight.sensiolabs.com/projects/f355c58b-f9b6-482c-8d2d-d1bc8791c9e5/big.png)](https://insight.sensiolabs.com/projects/f355c58b-f9b6-482c-8d2d-d1bc8791c9e5) |[![Build Status](https://travis-ci.org/helios-ag/FMBbCodeBundle.png?branch=master)](https://travis-ci.org/helios-ag/FMBbCodeBundle)|[![Build Status](https://scrutinizer-ci.com/g/helios-ag/FMBbCodeBundle/badges/build.png?b=scrutinizer-enabled)](https://scrutinizer-ci.com/g/helios-ag/FMBbCodeBundle/build-status/scrutinizer-enabled)[![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/helios-ag/FMBbCodeBundle/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/helios-ag/FMBbCodeBundle/?branch=master) [![Code Coverage](https://scrutinizer-ci.com/g/helios-ag/FMBbCodeBundle/badges/coverage.png?b=master)](https://scrutinizer-ci.com/g/helios-ag/FMBbCodeBundle/?branch=master)
23+
| SLInsight | Travis CI | Gitter | Coverage | StyleCI |
24+
| ----------|-----------|---------|----------|---------|
25+
|[![SensioLabsInsight](https://insight.sensiolabs.com/projects/f355c58b-f9b6-482c-8d2d-d1bc8791c9e5/big.png)](https://insight.sensiolabs.com/projects/f355c58b-f9b6-482c-8d2d-d1bc8791c9e5) |[![Build Status](https://travis-ci.org/helios-ag/FMBbCodeBundle.png?branch=master)](https://travis-ci.org/helios-ag/FMBbCodeBundle)|[![Join the chat at https://gitter.im/helios-ag/FMBbCodeBundle](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/helios-ag/FMBbCodeBundle?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)|[![Coverage Status](https://coveralls.io/repos/helios-ag/FMBbCodeBundle/badge.svg?branch=master&service=github)](https://coveralls.io/github/helios-ag/FMBbCodeBundle?branch=master)|[![StyleCI](https://styleci.io/repos/2714013/shield)](https://styleci.io/repos/2714013)|
1626

17-
[![Dependency Status](https://www.versioneye.com/user/projects/53db56c04b3ac87d6a000207/badge.svg?style=flat)](https://www.versioneye.com/user/projects/53db56c04b3ac87d6a000207)
18-
[![Latest Stable Version](https://poser.pugx.org/helios-ag/fm-bbcode-bundle/version.png)](https://packagist.org/packages/helios-ag/fm-bbcode-bundle)
19-
[![Total Downloads](https://poser.pugx.org/helios-ag/fm-bbcode-bundle/d/total.png)](https://packagist.org/packages/helios-ag/fm-bbcode-bundle)
20-
[![Coverage Status](https://coveralls.io/repos/helios-ag/FMBbCodeBundle/badge.svg?branch=master&service=github)](https://coveralls.io/github/helios-ag/FMBbCodeBundle?branch=master)
27+
28+
| Deps Status | Version | Downloads |
29+
| ----------|-----------|---------|
30+
|[![Dependency Status](https://www.versioneye.com/user/projects/53db56c04b3ac87d6a000207/badge.svg?style=flat)](https://www.versioneye.com/user/projects/53db56c04b3ac87d6a000207)|[![Latest Stable Version](https://poser.pugx.org/helios-ag/fm-bbcode-bundle/version.png)](https://packagist.org/packages/helios-ag/fm-bbcode-bundle)|[![Total Downloads](https://poser.pugx.org/helios-ag/fm-bbcode-bundle/d/total.png)](https://packagist.org/packages/helios-ag/fm-bbcode-bundle)|
2131

2232
## Installation
2333

@@ -29,16 +39,22 @@ and this bundle. Installation depends on how your project is setup:
2939
Using Composer, just add the following configuration to your `composer.json`:
3040

3141
Or you can use composer to install this bundle:
32-
Add FMBbcodeBundle in your composer.json:
42+
43+
For symfony <3.0, use latest ~6 version
3344

3445
```sh
35-
composer require helios-ag/fm-bbcode-bundle
46+
composer require helios-ag/fm-bbcode-bundle:~6
3647
```
3748

38-
Now tell composer to download the bundle by running the command:
49+
for Symfony 3
3950

4051
```sh
41-
composer update helios-ag/fm-bbcode-bundle
52+
composer require helios-ag/fm-bbcode-bundle
53+
```
54+
or
55+
56+
```sh
57+
composer require helios-ag/fm-bbcode-bundle:~7
4258
```
4359

4460
### Step 2: Enable the bundle
@@ -269,15 +285,3 @@ fm_bbcode:
269285
path: # Default: /emoticons
270286
folder: # Default: %kernel.root_dir%/../vendor/mjohnson/decoda/emoticons%
271287
```
272-
273-
## Contributors
274-
275-
* **Alexandre Quercia [alquerci](https://github.com/alquerci)**
276-
* Gaiffe Antoine [toinouu](https://github.com/toinouu)
277-
* Luis Íñiguez [idetia](https://github.com/idetia)
278-
* Sebastian [slider](https://github.com/slider)
279-
* [olleyyy](https://github.com/olleyyy)
280-
* Dirk Olbertz [dolbertz](https://github.com/dolbertz)
281-
* Florian Krauthan [fkrauthan](https://github.com/fkrauthan)
282-
* [predakanga](https://github.com/predakanga)
283-
* Dan [piratadelfuturo](https://github.com/piratadelfuturo)

0 commit comments

Comments
 (0)