View difference between Paste ID: JqfkmAEy and s4VzMZW7
SHOW: | | - or go back to the newest paste.
1-
imports:
1+
{
2-
    - { resource: parameters.yml }
2+
    "name": "symfony/framework-standard-edition",
3-
    - { resource: security.yml }
3+
    "license": "MIT",
4-
4+
    "type": "project",
5-
framework:
5+
    "description": "The \"Symfony Standard Edition\" distribution",
6-
    #esi:             ~
6+
    "autoload": {
7-
    #translator:      { fallback: %locale% }
7+
        "psr-0": { "": "src/" }
8-
    secret:          %secret%
8+
    },
9-
    router:
9+
    "require": {
10-
        resource: "%kernel.root_dir%/config/routing.yml"
10+
        "php": ">=5.3.3",
11-
        strict_requirements: ~
11+
        "symfony/symfony": "2.3.*",
12-
    form:            ~
12+
        "doctrine/orm": ">=2.2.3,<2.4-dev",
13-
    csrf_protection: ~
13+
        "doctrine/doctrine-bundle": "1.2.*",
14-
    validation:      { enable_annotations: true }
14+
        "twig/extensions": "1.0.*",
15-
    templating:
15+
        "symfony/assetic-bundle": "2.3.*",
16-
        engines: ['twig','php']
16+
        "symfony/swiftmailer-bundle": "2.3.*",
17-
        #assets_version: SomeVersionScheme
17+
        "symfony/monolog-bundle": "2.3.*",
18-
    default_locale:  "%locale%"
18+
        "sensio/distribution-bundle": "2.3.*",
19-
    trusted_proxies: ~
19+
        "sensio/framework-extra-bundle": "2.3.*",
20-
    session:         ~
20+
        "sensio/generator-bundle": "2.3.*",
21-
    fragments:       ~
21+
        "incenteev/composer-parameter-handler": "~2.0",
22-
    http_method_override: true
22+
        "gedmo/doctrine-extensions": "v2.3.2",
23-
    translator: { fallback: cz }
23+
        "stof/doctrine-extensions-bundle": "~1.1@dev"
24-
24+
    },
25-
# Twig Configuration
25+
    "scripts": {
26-
twig:
26+
        "post-install-cmd": [
27-
    debug:            %kernel.debug%
27+
            "Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
28-
    strict_variables: %kernel.debug%
28+
            "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
29-
29+
            "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
30-
# Assetic Configuration
30+
            "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
31-
assetic:
31+
            "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile"
32-
    debug:          %kernel.debug%
32+
        ],
33-
    use_controller: false
33+
        "post-update-cmd": [
34-
    bundles:        [ ]
34+
            "Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
35-
    #java: /usr/bin/java
35+
            "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
36-
    filters:
36+
            "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
37-
        cssrewrite: ~
37+
            "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
38-
        #closure:
38+
            "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile"
39-
        #    jar: %kernel.root_dir%/Resources/java/compiler.jar
39+
        ]
40-
        #yui_css:
40+
    },
41-
        #    jar: %kernel.root_dir%/Resources/java/yuicompressor-2.4.7.jar
41+
    "config": {
42-
42+
        "bin-dir": "bin"
43-
# Doctrine Configuration
43+
    },
44-
doctrine:
44+
    "minimum-stability": "stable",
45-
    dbal:
45+
    "extra": {
46-
        driver:   %database_driver%
46+
        "symfony-app-dir": "app",
47-
        host:     %database_host%
47+
        "symfony-web-dir": "web",
48-
        port:     %database_port%
48+
        "incenteev-parameters": {
49-
        dbname:   %database_name%
49+
            "file": "app/config/parameters.yml"
50-
        user:     %database_user%
50+
        },
51-
        password: %database_password%
51+
        "branch-alias": {
52-
        charset:  UTF8
52+
            "dev-master": "2.3-dev"
53-
        # if using pdo_sqlite as your database driver, add the path in parameters.yml
53+
        }
54-
        # e.g. database_path: %kernel.root_dir%/data/data.db3
54+
    }
55-
        # path:     %database_path%
55+
}