Skip to content

Commit 2edaf33

Browse files
authored
Merge pull request #13 from yokai-php/sensio-insight-fixes
Sensio insight fixes
2 parents d5349d1 + 808d9a5 commit 2edaf33

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed
File renamed without changes.

README.md

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,17 @@
1-
Yokai\EnumBundle
1+
YokaiEnumBundle
22
==============
33

4-
This repository aims to provide simple enumeration implementation to Symfony2 :
5-
4+
[![Latest Stable Version](https://poser.pugx.org/yokai/enum-bundle/v/stable)](https://packagist.org/packages/yokai/enum-bundle)
5+
[![Latest Unstable Version](https://poser.pugx.org/yokai/enum-bundle/v/unstable)](https://packagist.org/packages/yokai/enum-bundle)
6+
[![Total Downloads](https://poser.pugx.org/yokai/enum-bundle/downloads)](https://packagist.org/packages/yokai/enum-bundle)
7+
[![License](https://poser.pugx.org/yokai/enum-bundle/license)](https://packagist.org/packages/yokai/enum-bundle)
68

79
[![Build Status](https://api.travis-ci.org/yokai-php/enum-bundle.png?branch=master)](https://travis-ci.org/yokai-php/enum-bundle)
810
[![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/yokai-php/enum-bundle/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/yokai-php/enum-bundle/?branch=master)
911
[![Code Coverage](https://scrutinizer-ci.com/g/yokai-php/enum-bundle/badges/coverage.png?b=master)](https://scrutinizer-ci.com/g/yokai-php/enum-bundle/?branch=master)
10-
[![Build Status](https://scrutinizer-ci.com/g/yokai-php/enum-bundle/badges/build.png?b=master)](https://scrutinizer-ci.com/g/yokai-php/enum-bundle/build-status/master)
11-
[![Total Downloads](https://poser.pugx.org/yokai-php/enum-bundle/downloads.png)](https://packagist.org/packages/yokai-php/enum-bundle)
12-
[![SensioLabsInsight](https://insight.sensiolabs.com/projects/a3246c63-abbf-4605-98ca-33295a547338/mini.png)](https://insight.sensiolabs.com/projects/a3246c63-abbf-4605-98ca-33295a547338)
12+
[![SensioLabsInsight](https://insight.sensiolabs.com/projects/596d2076-90ee-49d9-a8b2-e3bcbd390874/mini.png)](https://insight.sensiolabs.com/projects/596d2076-90ee-49d9-a8b2-e3bcbd390874)
13+
14+
This repository aims to provide simple enumeration implementation to Symfony2 :
1315

1416

1517
Installation
@@ -18,7 +20,7 @@ Installation
1820
### Add the bundle as dependency with Composer
1921

2022
``` bash
21-
$ php composer.phar require yokai-php/enum-bundle
23+
$ php composer.phar require yokai/enum-bundle
2224
```
2325

2426
### Enable the bundle in the kernel
@@ -31,7 +33,7 @@ public function registerBundles()
3133
{
3234
$bundles = [
3335
// ...
34-
new Yokai\EnumBundle(),
36+
new Yokai\EnumBundle\YokaiEnumBundle(),
3537
];
3638
}
3739
```

composer.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "yokai-php/enum-bundle",
2+
"name": "yokai/enum-bundle",
33
"description": "Bring simple enumeration implementation to Symfony2",
44
"license": "MIT",
55
"authors": [
@@ -14,9 +14,7 @@
1414
"twig/twig": "~1.20|~2.0"
1515
},
1616
"require-dev": {
17-
"symfony/form": "~2.7|~3.0",
1817
"doctrine/annotations": "~1.3",
19-
"symfony/validator": "~2.7|~3.0",
2018
"phpunit/phpunit": "~4.6"
2119
},
2220
"autoload": {

0 commit comments

Comments
 (0)