-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Added support block in composer.json file * Fixed some files - Line at the end of the file
- Loading branch information
mmoreram
committed
Apr 10, 2015
1 parent
e87acfe
commit a03aaa1
Showing
3 changed files
with
17 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,4 +15,4 @@ header: | | |
* Feel free to edit as you please, and have fun. | ||
* | ||
* @author Marc Morera <[email protected]> | ||
*/ | ||
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,4 +2,4 @@ vendor | |
bin | ||
composer.phar | ||
composer.lock | ||
phpunit.xml | ||
phpunit.xml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,21 @@ | ||
{ | ||
"name": "mmoreram/controller-extra-bundle", | ||
"description": "Some specific controller features", | ||
"keywords": ["symfony2", "controller", "annotations", "controller-extra-bundle"], | ||
"keywords": [ | ||
"symfony2", | ||
"controller", | ||
"annotations", | ||
"controller-extra-bundle" | ||
], | ||
"homepage": "https://github.com/mmoreram/ControllerExtraBundle", | ||
"type": "symfony-bundle", | ||
"license": "MIT", | ||
"support": { | ||
"email": "[email protected]", | ||
"forum": "https://gitter.im/mmoreram/ControllerExtraBundle", | ||
"source": "https://github.com/mmoreram/ControllerExtraBundle", | ||
"issues": "https://github.com/mmoreram/ControllerExtraBundle/issues" | ||
}, | ||
"authors": [ | ||
{ | ||
"name": "Marc Morera", | ||
|
@@ -39,11 +50,11 @@ | |
"doctrine/orm": "to use the @Paginator annotation", | ||
"white-october/pagerfanta-bundle": "to use the @Paginator annotation with Pagerfanta support" | ||
}, | ||
"target-dir": "Mmoreram/ControllerExtraBundle", | ||
"autoload": { | ||
"psr-0": { "Mmoreram\\ControllerExtraBundle": "" } | ||
"psr-4": { | ||
"Mmoreram\\ControllerExtraBundle\\": "" | ||
} | ||
}, | ||
"minimum-stability": "stable", | ||
"config": { | ||
"bin-dir": "bin" | ||
}, | ||
|