Skip to content

Commit

Permalink
minor #61 Added project dependencies in composer (mmoreram)
Browse files Browse the repository at this point in the history
This PR was merged into the master branch.

Discussion
----------

Added project dependencies in composer

* Symfony dependencies (Components and Bundles)
* FrameworkExtraBundle dependencies

Commits
-------

d2d0364 Added project dependencies in composer
  • Loading branch information
javiereguiluz committed Jan 21, 2015
2 parents 939fb46 + d2d0364 commit a654291
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 3 deletions.
3 changes: 3 additions & 0 deletions EasyAdminBundle.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@

use Symfony\Component\HttpKernel\Bundle\Bundle;

/**
* Class EasyAdminBundle
*/
class EasyAdminBundle extends Bundle
{
}
15 changes: 12 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,18 @@
}
],
"require": {
"php" : ">=5.3.0",
"doctrine/orm" : "~2.3",
"pagerfanta/pagerfanta" : "~1.0"
"php" : ">=5.3.0",
"doctrine/orm" : "~2.3",
"pagerfanta/pagerfanta" : "~1.0",
"sensio/framework-extra-bundle" : "~2.3|~3.0",
"symfony/dependency-injection" : "~2.3",
"symfony/config" : "~2.3",
"symfony/form" : "~2.3",
"symfony/framework-bundle" : "~2.3",
"symfony/http-foundation" : "~2.3",
"symfony/http-kernel" : "~2.3",
"symfony/routing" : "~2.3",
"twig/twig" : "~1.0"
},
"autoload": {
"psr-4": { "JavierEguiluz\\Bundle\\EasyAdminBundle\\": "" }
Expand Down

0 comments on commit a654291

Please sign in to comment.