Skip to content

Instantly share code, notes, and snippets.

@devdrops
Last active September 8, 2015 18:38
Show Gist options
  • Save devdrops/b9433e034e4750672a74 to your computer and use it in GitHub Desktop.
Save devdrops/b9433e034e4750672a74 to your computer and use it in GitHub Desktop.
Symfony "get-in-shape" dependencies list.

Symfony get-in-shape Dependencies List

A list of Symfony dependencies to install only the minimum required components. From https://github.com/javiereguiluz/EasyAdminBundle/pull/424/files

{
    "require": {
        "php"                           : ">=5.6.13",
        "symfony/class-loader"          : "~2.7",
        "symfony/config"                : "~2.7",
        "symfony/console"               : "~2.7",
        "symfony/debug"                 : "~2.7",
        "symfony/dependency-injection"  : "~2.7",
        "symfony/doctrine-bridge"       : "~2.3",
        "symfony/event-dispatcher"      : "~2.3",
        "symfony/filesystem"            : "~2.3",
        "symfony/finder"                : "~2.3",
        "symfony/form"                  : "~2.3",
        "symfony/framework-bundle"      : "~2.3",
        "symfony/http-foundation"       : "~2.3",
        "symfony/http-kernel"           : "~2.3",
        "symfony/intl"                  : "~2.3",
        "symfony/options-resolver"      : "~2.3",
        "symfony/process"               : "~2.3",
        "symfony/property-access"       : "~2.3",
        "symfony/routing"               : "~2.3",
        "symfony/security"              : "~2.3",
        "symfony/stopwatch"             : "~2.3",
        "symfony/templating"            : "~2.3",
        "symfony/translation"           : "~2.3",
        "symfony/twig-bridge"           : "~2.3",
        "symfony/twig-bundle"           : "~2.3",
        "symfony/validator"             : "~2.3",
        "symfony/yaml"                  : "~2.3",
        "doctrine/orm"                  : "~2.3",
        "doctrine/doctrine-bundle"      : "~1.2",
        "sensio/distribution-bundle"    : "~2.3|~3.0|~4.0",
        "sensio/framework-extra-bundle" : "~3.0,>=3.0.2",
        "twig/extensions"               : "~1.0",
        "twig/twig"                     : "~1.12,>=1.12.2"
    },
    "require-dev": {
        "phpunit/phpunit"                   : "~4.4",
        "doctrine/doctrine-fixtures-bundle" : "~2.2",
        "symfony/browser-kit"               : "~2.3",
        "symfony/css-selector"              : "~2.3",
        "symfony/dom-crawler"               : "~2.3",
        "symfony/security-bundle"           : "~2.3"
    },
    "suggest": {
        "symfony/security-bundle"           : "To get the benefits from the security and view logged user name in the navigation bar."
    }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment