8000 Updated the application to use Symfony Flex by javiereguiluz · Pull Request #617 · symfony/demo · GitHub
[go: up one dir, main page]

Skip to content

Updated the application to use Symfony Flex #617

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers 8000 and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 50 commits into from
Closed

Updated the application to use Symfony Flex #617

wants to merge 50 commits into from

Conversation

javiereguiluz
Copy link
Member
@javiereguiluz javiereguiluz commented Jul 27, 2017

This fixes #616.


The application works, but I need to check tests because there were some issues with the dama/doctrine-test-bundle dependency used to run tests.


When testing this locally, in your .env file, you must use an absolute file path to define the SQLite path. Otherwise you'll see this error:

An exception occurred in driver: SQLSTATE[HY000] [14] unable to open database file

This is a known limitation of DotEnv and we're working on it.

Copy link
Member
@yceruto yceruto left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Great 🎉!

@@ -0,0 +1,25 @@
services:
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I guess this file can be removed in favor of config/services.yaml?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

10000

Yes, I removed it ... but whenever you run composer install, the file is recreated, so I prefer to keep it until Symfony removes it officially.

@@ -0,0 +1,7 @@
twig:
paths: ['%kernel.project_dir%/templates']
Copy link
Member
@yceruto yceruto Jul 27, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

As soon as symfony/symfony#23339 to be merged, the default path to override bundles will be templates/bundles/, so what about omit (i.e. for templates) the src/Resources/ path to override the TwigBundle's templates? this configuration should be enough to move them:

twig:
    paths:
        templates: ~
        templates/bundles/Twig: Twig

Later, the error template can live there templates/bundles/Twig/Exception/error.html.twig. WDYT?

.env.dist Outdated
# Format described at http://docs.doctrine-project.org/projects/doctrine-dbal/en/latest/reference/configuration.html#connecting-using-a-url
# For a MySQL database, use: "mysql://root@127.0.0.1:3306/symfony?charset=utf8mb4&serverVersion=5.7"
# Set "serverVersion" to your server version to avoid edge-case exceptions and extra database calls
DATABASE_URL="sqlite:///%kernel.project_dir%/var/data.db"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Meanwhile... we could use relative paths?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

With kernel.project_dir it's much readable I think

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, the kernel.project_dir param is the right thing to do, but it doesn't work yet. Relative paths should be OK too, but I couldn't make it work. Only absolute paths worked for me. But probably (hopefully) I'm doing something wrong.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@javiereguiluz, There is no data.db file. I think it should be sqlite:///%kernel.project_dir%/var/data/blog.sqlite.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

you are right, thanks! But it doesn't work either. Only absolute paths work for now.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@javiereguiluz, It doesn't work because the current working dir is public. You should use this: sqlite:///../var/data/blog.sqlite. What about to change the current working dir in the front controller?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, the current working dir is different when we're executing a command and when we're accessing through the browser, so relative path shouldn't work.

handler_id: session.handler.native_file
save_path: '%kernel.project_dir%/var/sessions/%kernel.environment%'

trusted_hosts: null
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Wasn't this option deprecated?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think it's trusted_proxies the one that's deprecated: https://symfony.com/blog/fixing-the-trusted-proxies-configuration-for-symfony-3-3

.env.dist Outdated
###> symfony/swiftmailer-bundle ###
# For Gmail as a transport, use: "gmail://username:password@localhost"
# To disable sending emails, use: "null://localhost"
MAILER_URL=smtp://localhost:25?encryption=tls&auth_mode=login
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@javiereguiluz, you should quote the variable value with a single quotes. IMHO, it's better to use single quotes instead of double ones in the environment files, because double quotes don't support variable expansion and etc.

.env.dist Outdated
# Format described at http://docs.doctrine-project.org/projects/doctrine-dbal/en/latest/reference/configuration.html#connecting-using-a-url
# For a MySQL database, use: "mysql://root@127.0.0.1:3306/symfony?charset=utf8mb4&serverVersion=5.7"
# Set "serverVersion" to your server version to avoid edge-case exceptions and extra database calls
DATABASE_URL="sqlite:///%kernel.project_dir%/var/data/blog.sqlite"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I agree with @yceruto, it's better to use relative path here. We should avoid to use container parameters in the environment files, because it makes them unshareable with others applications.
For example, I want to create bash script to back up the database:

#!/usr/bin/env bash

source .env;
mysqldump "$DATABASE_URL"; # It won't work because variable contains the %kernel.project_dir% parameter

@dmaicher
Copy link
Contributor

@javiereguiluz what exactly are the problems with dama/doctrine-test-bundle? Can I help?

@javiereguiluz
Copy link
Member Author

@dmaicher

result of executing: $ composer require --dev dama/doctrine-test-bundle

Using version ^3.0 for dama/doctrine-test-bundle
./composer.json has been updated
Loading composer repositories with package information
Updating dependencies (including require-dev)
Your requirements could not be resolved to an installable set of packages.

Problem 1
- symfony/symfony v2.7.3 requires twig/twig ~1.18 -> satisfiable by twig/twig[1.x-dev, v1.18.0, v1.18.1, v1.18.2, v1.19.0, v1.20.0, v1.21.0, v1.21.1, v1.21.2, v1.22.0, v1.22.1, v1.22.2, v1.22.3, v1.23.0, v1.23.1, v1.23.2, v1.23.3, v1.24.0, v1.24.1, v1.24.2, v1.25.0, v1.26.0, v1.26.1, v1.27.0, v1.28.0, v1.28.1, v1.28.2, v1.29.0, v1.30.0, v1.31.0, v1.32.0, v1.33.0, v1.33.1, v1.33.2, v1.34.0, v1.34.1, v1.34.2, v1.34.3, v1.34.4] but these conflict with your requirements or minimum-stability.
- symfony/symfony v2.7.2 requires twig/twig ~1.18 -> satisfiable by twig/twig[1.x-dev, v1.18.0, v1.18.1, v1.18.2, v1.19.0, v1.20.0, v1.21.0, v1.21.1, v1.21.2, v1.22.0, v1.22.1, v1.22.2, v1.22.3, v1.23.0, v1.23.1, v1.23.2, v1.23.3, v1.24.0, v1.24.1, v1.24.2, v1.25.0, v1.26.0, v1.26.1, v1.27.0, v1.28.0, v1.28.1, v1.28.2, v1.29.0, v1.30.0, v1.31.0, v1.32.0, v1.33.0, v1.33.1, v1.33.2, v1.34.0, v1.34.1, v1.34.2, v1.34.3, v1.34.4] but these conflict with your requirements or minimum-stability.
- symfony/symfony v2.7.1 requires twig/twig ~1.18 -> satisfiable by twig/twig[1.x-dev, v1.18.0, v1.18.1, v1.18.2, v1.19.0, v1.20.0, v1.21.0, v1.21.1, v1.21.2, v1.22.0, v1.22.1, v1.22.2, v1.22.3, v1.23.0, v1.23.1, v1.23.2, v1.23.3, v1.24.0, v1.24.1, v1.24.2, v1.25.0, v1.26.0, v1.26.1, v1.27.0, v1.28.0, v1.28.1, v1.28.2, v1.29.0, v1.30.0, v1.31.0, v1.32.0, v1.33.0, v1.33.1, v1.33.2, v1.34.0, v1.34.1, v1.34.2, v1.34.3, v1.34.4] but these conflict with your requirements or minimum-stability.
- symfony/symfony v2.7.0 requires twig/twig ~1.18 -> satisfiable by twig/twig[1.x-dev, v1.18.0, v1.18.1, v1.18.2, v1.19.0, v1.20.0, v1.21.0, v1.21.1, v1.21.2, v1.22.0, v1.22.1, v1.22.2, v1.22.3, v1.23.0, v1.23.1, v1.23.2, v1.23.3, v1.24.0, v1.24.1, v1.24.2, v1.25.0, v1.26.0, v1.26.1, v1.27.0, v1.28.0, v1.28.1, v1.28.2, v1.29.0, v1.30.0, v1.31.0, v1.32.0, v1.33.0, v1.33.1, v1.33.2, v1.34.0, v1.34.1, v1.34.2, v1.34.3, v1.34.4] but these conflict with your requirements or minimum-stability.
- symfony/symfony v2.6.9 requires twig/twig ~1.12,>=1.12.3 -> satisfiable by twig/twig[1.x-dev, v1.12.3, v1.13.0, v1.13.1, v1.13.2, v1.14.0, v1.14.1, v1.14.2, v1.15.0, v1.15.1, v1.16.0, v1.16.1, v1.16.2, v1.16.3, v1.17.0, v1.18.0, v1.18.1, v1.18.2, v1.19.0, v1.20.0, v1.21.0, v1.21.1, v1.21.2, v1.22.0, v1.22.1, v1.22.2, v1.22.3, v1.23.0, v1.23.1, v1.23.2, v1.23.3, v1.24.0, v1.24.1, v1.24.2, v1.25.0, v1.26.0, v1.26.1, v1.27.0, v1.28.0, v1.28.1, v1.28.2, v1.29.0, v1.30.0, v1.31.0, v1.32.0, v1.33.0, v1.33.1, v1.33.2, v1.34.0, v1.34.1, v1.34.2, v1.34.3, v1.34.4] but these conflict with your requirements or minimum-stability.
- symfony/symfony v2.6.8 requires twig/twig ~1.12,>=1.12.3 -> satisfiable by twig/twig[1.x-dev, v1.12.3, v1.13.0, v1.13.1, v1.13.2, v1.14.0, v1.14.1, v1.14.2, v1.15.0, v1.15.1, v1.16.0, v1.16.1, v1.16.2, v1.16.3, v1.17.0, v1.18.0, v1.18.1, v1.18.2, v1.19.0, v1.20.0, v1.21.0, v1.21.1, v1.21.2, v1.22.0, v1.22.1, v1.22.2, v1.22.3, v1.23.0, v1.23.1, v1.23.2, v1.23.3, v1.24.0, v1.24.1, v1.24.2, v1.25.0, v1.26.0, v1.26.1, v1.27.0, v1.28.0, v1.28.1, v1.28.2, v1.29.0, v1.30.0, v1.31.0, v1.32.0, v1.33.0, v1.33.1, v1.33.2, v1.34.0, v1.34.1, v1.34.2, v1.34.3, v1.34.4] but these conflict with your requirements or minimum-stability.
- symfony/symfony v2.6.7 requires twig/twig ~1.12,>=1.12.3 -> satisfiable by twig/twig[1.x-dev, v1.12.3, v1.13.0, v1.13.1, v1.13.2, v1.14.0, v1.14.1, v1.14.2, v1.15.0, v1.15.1, v1.16.0, v1.16.1, v1.16.2, v1.16.3, v1.17.0, v1.18.0, v1.18.1, v1.18.2, v1.19.0, v1.20.0, v1.21.0, v1.21.1, v1.21.2, v1.22.0, v1.22.1, v1.22.2, v1.22.3, v1.23.0, v1.23.1, v1.23.2, v1.23.3, v1.24.0, v1.24.1, v1.24.2, v1.25.0, v1.26.0, v1.26.1, v1.27.0, v1.28.0, v1.28.1, v1.28.2, v1.29.0, v1.30.0, v1.31.0, v1.32.0, v1.33.0, v1.33.1, v1.33.2, v1.34.0, v1.34.1, v1.34.2, v1.34.3, v1.34.4] but these conflict with your requirements or minimum-stability.
- symfony/symfony v2.6.6 requires twig/twig ~1.12,>=1.12.3 -> satisfiable by twig/twig[1.x-dev, v1.12.3, v1.13.0, v1.13.1, v1.13.2, v1.14.0, v1.14.1, v1.14.2, v1.15.0, v1.15.1, v1.16.0, v1.16.1, v1.16.2, v1.16.3, v1.17.0, v1.18.0, v1.18.1, v1.18.2, v1.19.0, v1.20.0, v1.21.0, v1.21.1, v1.21.2, v1.22.0, v1.22.1, v1.22.2, v1.22.3, v1.23.0, v1.23.1, v1.23.2, v1.23.3, v1.24.0, v1.24.1, v1.24.2, v1.25.0, v1.26.0, v1.26.1, v1.27.0, v1.28.0, v1.28.1, v1.28.2, v1.29.0, v1.30.0, v1.31.0, v1.32.0, v1.33.0, v1.33.1, v1.33.2, v1.34.0, v1.34.1, v1.34.2, v1.34.3, v1.34.4] but these conflict with your requirements or minimum-stability.
- symfony/symfony v2.6.5 requires twig/twig ~1.12,>=1.12.3 -> satisfiable by twig/twig[1.x-dev, v1.12.3, v1.13.0, v1.13.1, v1.13.2, v1.14.0, v1.14.1, v1.14.2, v1.15.0, v1.15.1, v1.16.0, v1.16.1, v1.16.2, v1.16.3, v1.17.0, v1.18.0, v1.18.1, v1.18.2, v1.19.0, v1.20.0, v1.21.0, v1.21.1, v1.21.2, v1.22.0, v1.22.1, v1.22.2, v1.22.3, v1.23.0, v1.23.1, v1.23.2, v1.23.3, v1.24.0, v1.24.1, v1.24.2, v1.25.0, v1.26.0, v1.26.1, v1.27.0, v1.28.0, v1.28.1, v1.28.2, v1.29.0, v1.30.0, v1.31.0, v1.32.0, v1.33.0, v1.33.1, v1.33.2, v1.34.0, v1.34.1, v1.34.2, v1.34.3, v1.34.4] but these conflict with your requirements or minimum-stability.
- symfony/symfony v2.6.4 requires twig/twig ~1.12,>=1.12.3 -> satisfiable by twig/twig[1.x-dev, v1.12.3, v1.13.0, v1.13.1, v1.13.2, v1.14.0, v1.14.1, v1.14.2, v1.15.0, v1.15.1, v1.16.0, v1.16.1, v1.16.2, v1.16.3, v1.17.0, v1.18.0, v1.18.1, v1.18.2, v1.19.0, v1.20.0, v1.21.0, v1.21.1, v1.21.2, v1.22.0, v1.22.1, v1.22.2, v1.22.3, v1.23.0, v1.23.1, v1.23.2, v1.23.3, v1.24.0, v1.24.1, v1.24.2, v1.25.0, v1.26.0, v1.26.1, v1.27.0, v1.28.0, v1.28.1, v1.28.2, v1.29.0, v1.30.0, v1.31.0, v1.32.0, v1.33.0, v1.33.1, v1.33.2, v1.34.0, v1.34.1, v1.34.2, v1.34.3, v1.34.4] but these conflict with your requirements or minimum-stability.
- symfony/symfony v2.6.3 requires twig/twig ~1.12,>=1.12.3 -> satisfiable by twig/twig[1.x-dev, v1.12.3, v1.13.0, v1.13.1, v1.13.2, v1.14.0, v1.14.1, v1.14.2, v1.15.0, v1.15.1, v1.16.0, v1.16.1, v1.16.2, v1.16.3, v1.17.0, v1.18.0, v1.18.1, v1.18.2, v1.19.0, v1.20.0, v1.21.0, v1.21.1, v1.21.2, v1.22.0, v1.22.1, v1.22.2, v1.22.3, v1.23.0, v1.23.1, v1.23.2, v1.23.3, v1.24.0, v1.24.1, v1.24.2, v1.25.0, v1.26.0, v1.26.1, v1.27.0, v1.28.0, v1.28.1, v1.28.2, v1.29.0, v1.30.0, v1.31.0, v1.32.0, v1.33.0, v1.33.1, v1.33.2, v1.34.0, v1.34.1, v1.34.2, v1.34.3, v1.34.4] but these conflict with your requirements or minimum-stability.
- symfony/symfony v2.6.2 requires twig/twig ~1.12,>=1.12.3 -> satisfiable by twig/twig[1.x-dev, v1.12.3, v1.13.0, v1.13.1, v1.13.2, v1.14.0, v1.14.1, v1.14.2, v1.15.0, v1.15.1, v1.16.0, v1.16.1, v1.16.2, v1.16.3, v1.17.0, v1.18.0, v1.18.1, v1.18.2, v1.19.0, v1.20.0, v1.21.0, v1.21.1, v1.21.2, v1.22.0, v1.22.1, v1.22.2, v1.22.3, v1.23.0, v1.23.1, v1.23.2, v1.23.3, v1.24.0, v1.24.1, v1.24.2, v1.25.0, v1.26.0, v1.26.1, v1.27.0, v1.28.0, v1.28.1, v1.28.2, v1.29.0, v1.30.0, v1.31.0, v1.32.0, v1.33.0, v1.33.1, v1.33.2, v1.34.0, v1.34.1, v1.34.2, v1.34.3, v1.34.4] but these conflict with your requirements or minimum-stability.
- symfony/symfony v2.6.13 requires twig/twig ~1.12,>=1.12.3 -> satisfiable by twig/twig[1.x-dev, v1.12.3, v1.13.0, v1.13.1, v1.13.2, v1.14.0, v1.14.1, v1.14.2, v1.15.0, v1.15.1, v1.16.0, v1.16.1, v1.16.2, v1.16.3, v1.17.0, v1.18.0, v1.18.1, v1.18.2, v1.19.0, v1.20.0, v1.21.0, v1.21.1, v1.21.2, v1.22.0, v1.22.1, v1.22.2, v1.22.3, v1.23.0, v1.23.1, v1.23.2, v1.23.3, v1.24.0, v1.24.1, v1.24.2, v1.25.0, v1.26.0, v1.26.1, v1.27.0, v1.28.0, v1.28.1, v1.28.2, v1.29.0, v1.30.0, v1.31.0, v1.32.0, v1.33.0, v1.33.1, v1.33.2, v1.34.0, v1.34.1, v1.34.2, v1.34.3, v1.34.4] but these conflict with your requirements or minimum-stability.
- symfony/symfony v2.6.12 requires twig/twig ~1.12,>=1.12.3 -> satisfiable by twig/twig[1.x-dev, v1.12.3, v1.13.0, v1.13.1, v1.13.2, v1.14.0, v1.14.1, v1.14.2, v1.15.0, v1.15.1, v1.16.0, v1.16.1, v1.16.2, v1.16.3, v1.17.0, v1.18.0, v1.18.1, v1.18.2, v1.19.0, v1.20.0, v1.21.0, v1.21.1, v1.21.2, v1.22.0, v1.22.1, v1.22.2, v1.22.3, v1.23.0, v1.23.1, v1.23.2, v1.23.3, v1.24.0, v1.24.1, v1.24.2, v1.25.0, v1.26.0, v1.26.1, v1.27.0, v1.28.0, v1.28.1, v1.28.2, v1.29.0, v1.30.0, v1.31.0, v1.32.0, v1.33.0, v1.33.1, v1.33.2, v1.34.0, v1.34.1, v1.34.2, v1.34.3, v1.34.4] but these conflict with your requirements or minimum-stability.
- symfony/symfony v2.6.11 requires twig/twig ~1.12,>=1.12.3 -> satisfiable by twig/twig[1.x-dev, v1.12.3, v1.13.0, v1.13.1, v1.13.2, v1.14.0, v1.14.1, v1.14.2, v1.15.0, v1.15.1, v1.16.0, v1.16.1, v1.16.2, v1.16.3, v1.17.0, v1.18.0, v1.18.1, v1.18.2, v1.19.0, v1.20.0, v1.21.0, v1.21.1, v1.21.2, v1.22.0, v1.22.1, v1.22.2, v1.22.3, v1.23.0, v1.23.1, v1.23.2, v1.23.3, v1.24.0, v1.24.1, v1.24.2, v1.25.0, v1.26.0, v1.26.1, v1.27.0, v1.28.0, v1.28.1, v1.28.2, v1.29.0, v1.30.0, v1.31.0, v1.32.0, v1.33.0, v1.33.1, v1.33.2, v1.34.0, v1.34.1, v1.34.2, v1.34.3, v1.34.4] but these conflict with your requirements or minimum-stability.
- symfony/symfony v2.6.10 requires twig/twig ~1.12,>=1.12.3 -> satisfiable by twig/twig[1.x-dev, v1.12.3, v1.13.0, v1.13.1, v1.13.2, v1.14.0, v1.14.1, v1.14.2, v1.15.0, v1.15.1, v1.16.0, v1.16.1, v1.16.2, v1.16.3, v1.17.0, v1.18.0, v1.18.1, v1.18.2, v1.19.0, v1.20.0, v1.21.0, v1.21.1, v1.21.2, v1.22.0, v1.22.1, v1.22.2, v1.22.3, v1.23.0, v1.23.1, v1.23.2, v1.23.3, v1.24.0, v1.24.1, v1.24.2, v1.25.0, v1.26.0, v1.26.1, v1.27.0, v1.28.0, v1.28.1, v1.28.2, v1.29.0, v1.30.0, v1.31.0, v1.32.0, v1.33.0, v1.33.1, v1.33.2, v1.34.0, v1.34.1, v1.34.2, v1.34.3, v1.34.4] but these conflict with your requirements or minimum-stability.
- symfony/symfony v2.6.1 requires twig/twig ~1.12 -> satisfiable by twig/twig[1.x-dev, v1.12.0, v1.12.0-RC1, v1.12.1, v1.12.2, v1.12.3, v1.13.0, v1.13.1, v1.13.2, v1.14.0, v1.14.1, v1.14.2, v1.15.0, v1.15.1, v1.16.0, v1.16.1, v1.16.2, v1.16.3, v1.17.0, v1.18.0, v1.18.1, v1.18.2, v1.19.0, v1.20.0, v1.21.0, v1.21.1, v1.21.2, v1.22.0, v1.22.1, v1.22.2, v1.22.3, v1.23.0, v1.23.1, v1.23.2, v1.23.3, v1.24.0, v1.24.1, v1.24.2, v1.25.0, v1.26.0, v1.26.1, v1.27.0, v1.28.0, v1.28.1, v1.28.2, v1.29.0, v1.30.0, v1.31.0, v1.32.0, v1.33.0, v1.33.1, v1.33.2, v1.34.0, v1.34.1, v1.34.2, v1.34.3, v1.34.4] but these conflict with your requirements or minimum-stability.
- symfony/symfony v2.6.0 requires twig/twig ~1.12 -> satisfiable by twig/twig[1.x-dev, v1.12.0, v1.12.0-RC1, v1.12.1, v1.12.2, v1.12.3, v1.13.0, v1.13.1, v1.13.2, v1.14.0, v1.14.1, v1.14.2, v1.15.0, v1.15.1, v1.16.0, v1.16.1, v1.16.2, v1.16.3, v1.17.0, v1.18.0, v1.18.1, v1.18.2, v1.19.0, v1.20.0, v1.21.0, v1.21.1, v1.21.2, v1.22.0, v1.22.1, v1.22.2, v1.22.3, v1.23.0, v1.23.1, v1.23.2, v1.23.3, v1.24.0, v1.24.1, v1.24.2, v1.25.0, v1.26.0, v1.26.1, v1.27.0, v1.28.0, v1.28.1, v1.28.2, v1.29.0, v1.30.0, v1.31.0, v1.32.0, v1.33.0, v1.33.1, v1.33.2, v1.34.0, v1.34.1, v1.34.2, v1.34.3, v1.34.4] but these conflict with your requirements or minimum-stability.
- symfony/symfony v2.5.9 requires twig/twig ~1.12,>=1.12.3 -> satisfiable by twig/twig[1.x-dev, v1.12.3, v1.13.0, v1.13.1, v1.13.2, v1.14.0, v1.14.1, v1.14.2, v1.15.0, v1.15.1, v1.16.0, v1.16.1, v1.16.2, v1.16.3, v1.17.0, v1.18.0, v1.18.1, v1.18.2, v1.19.0, v1.20.0, v1.21.0, v1.21.1, v1.21.2, v1.22.0, v1.22.1, v1.22.2, v1.22.3, v1.23.0, v1.23.1, v1.23.2, v1.23.3, v1.24.0, v1.24.1, v1.24.2, v1.25.0, v1.26.0, v1.26.1, v1.27.0, v1.28.0, v1.28.1, v1.28.2, v1.29.0, v1.30.0, v1.31.0, v1.32.0, v1.33.0, v1.33.1, v1.33.2, v1.34.0, v1.34.1, v1.34.2, v1.34.3, v1.34.4] but these conflict with your requirements or minimum-stability.
- symfony/symfony v2.5.8 requires twig/twig ~1.12 -> satisfiable by twig/twig[1.x-dev, v1.12.0, v1.12.0-RC1, v1.12.1, v1.12.2, v1.12.3, v1.13.0, v1.13.1, v1.13.2, v1.14.0, v1.14.1, v1.14.2, v1.15.0, v1.15.1, v1.16.0, v1.16.1, v1.16.2, v1.16.3, v1.17.0, v1.18.0, v1.18.1, v1.18.2, v1.19.0, v1.20.0, v1.21.0, v1.21.1, v1.21.2, v1.22.0, v1.22.1, v1.22.2, v1.22.3, v1.23.0, v1.23.1, v1.23.2, v1.23.3, v1.24.0, v1.24.1, v1.24.2, v1.25.0, v1.26.0, v1.26.1, v1.27.0, v1.28.0, v1.28.1, v1.28.2, v1.29.0, v1.30.0, v1.31.0, v1.32.0, v1.33.0, v1.33.1, v1.33.2, v1.34.0, v1.34.1, v1.34.2, v1.34.3, v1.34.4] but these conflict with your requirements or minimum-stability.
- symfony/symfony v2.5.7 requires twig/twig ~1.12 -> satisfiable by twig/twig[1.x-dev, v1.12.0, v1.12.0-RC1, v1.12.1, v1.12.2, v1.12.3, v1.13.0, v1.13.1, v1.13.2, v1.14.0, v1.14.1, v1.14.2, v1.15.0, v1.15.1, v1.16.0, v1.16.1, v1.16.2, v1.16.3, v1.17.0, v1.18.0, v1.18.1, v1.18.2, v1.19.0, v1.20.0, v1.21.0, v1.21.1, v1.21.2, v1.22.0, v1.22.1, v1.22.2, v1.22.3, v1.23.0, v1.23.1, v1.23.2, v1.23.3, v1.24.0, v1.24.1, v1.24.2, v1.25.0, v1.26.0, v1.26.1, v1.27.0, v1.28.0, v1.28.1, v1.28.2, v1.29.0, v1.30.0, v1.31.0, v1.32.0, v1.33.0, v1.33.1, v1.33.2, v1.34.0, v1.34.1, v1.34.2, v1.34.3, v1.34.4] but these conflict with your requirements or minimum-stability.
- symfony/symfony v2.5.6 requires twig/twig ~1.12 -> satisfiable by twig/twig[1.x-dev, v1.12.0, v1.12.0-RC1, v1.12.1, v1.12.2, v1.12.3, v1.13.0, v1.13.1, v1.13.2, v1.14.0, v1.14.1, v1.14.2, v1.15.0, v1.15.1, v1.16.0, v1.16.1, v1.16.2, v1.16.3, v1.17.0, v1.18.0, v1.18.1, v1.18.2, v1.19.0, v1.20.0, v1.21.0, v1.21.1, v1.21.2, v1.22.0, v1.22.1, v1.22.2, v1.22.3, v1.23.0, v1.23.1, v1.23.2, v1.23.3, v1.24.0, v1.24.1, v1.24.2, v1.25.0, v1.26.0, v1.26.1, v1.27.0, v1.28.0, v1.28.1, v1.28.2, v1.29.0, v1.30.0, v1.31.0, v1.32.0, v1.33.0, v1.33.1, v1.33.2, v1.34.0, v1.34.1, v1.34.2, v1.34.3, v1.34.4] but these conflict with your requirements or minimum-stability.
- symfony/symfony v2.5.5 requires twig/twig ~1.12 -> satisfiable by twig/twig[1.x-dev, v1.12.0, v1.12.0-RC1, v1.12.1, v1.12.2, v1.12.3, v1.13.0, v1.13.1, v1.13.2, v1.14.0, v1.14.1, v1.14.2, v1.15.0, v1.15.1, v1.16.0, v1.16.1, v1.16.2, v1.16.3, v1.17.0, v1.18.0, v1.18.1, v1.18.2, v1.19.0, v1.20.0, v1.21.0, v1.21.1, v1.21.2, v1.22.0, v1.22.1, v1.22.2, v1.22.3, v1.23.0, v1.23.1, v1.23.2, v1.23.3, v1.24.0, v1.24.1, v1.24.2, v1.25.0, v1.26.0, v1.26.1, v1.27.0, v1.28.0, v1.28.1, v1.28.2, v1.29.0, v1.30.0, v1.31.0, v1.32.0, v1.33.0, v1.33.1, v1.33.2, v1.34.0, v1.34.1, v1.34.2, v1.34.3, v1.34.4] but these conflict with your requirements or minimum-stability.
- symfony/symfony v2.5.4 requires twig/twig ~1.12 -> satisfiable by twig/twig[1.x-dev, v1.12.0, v1.12.0-RC1, v1.12.1, v1.12.2, v1.12.3, v1.13.0, v1.13.1, v1.13.2, v1.14.0, v1.14.1, v1.14.2, v1.15.0, v1.15.1, v1.16.0, v1.16.1, v1.16.2, v1.16.3, v1.17.0, v1.18.0, v1.18.1, v1.18.2, v1.19.0, v1.20.0, v1.21.0, v1.21.1, v1.21.2, v1.22.0, v1.22.1, v1.22.2, v1.22.3, v1.23.0, v1.23.1, v1.23.2, v1.23.3, v1.24.0, v1.24.1, v1.24.2, v1.25.0, v1.26.0, v1.26.1, v1.27.0, v1.28.0, v1.28.1, v1.28.2, v1.29.0, v1.30.0, v1.31.0, v1.32.0, v1.33.0, v1.33.1, v1.33.2, v1.34.0, v1.34.1, v1.34.2, v1.34.3, v1.34.4] but these conflict with your requirements or minimum-stability.
- symfony/symfony v2.5.3 requires twig/twig ~1.12 -> satisfiable by twig/twig[1.x-dev, v1.12.0, v1.12.0-RC1, v1.12.1, v1.12.2, v1.12.3, v1.13.0, v1.13.1, v1.13.2, v1.14.0, v1.14.1, v1.14.2, v1.15.0, v1.15.1, v1.16.0, v1.16.1, v1.16.2, v1.16.3, v1.17.0, v1.18.0, v1.18.1, v1.18.2, v1.19.0, v1.20.0, v1.21.0, v1.21.1, v1.21.2, v1.22.0, v1.22.1, v1.22.2, v1.22.3, v1.23.0, v1.23.1, v1.23.2, v1.23.3, v1.24.0, v1.24.1, v1.24.2, v1.25.0, v1.26.0, v1.26.1, v1.27.0, v1.28.0, v1.28.1, v1.28.2, v1.29.0, v1.30.0, v1.31.0, v1.32.0, v1.33.0, v1.33.1, v1.33.2, v1.34.0, v1.34.1, v1.34.2, v1.34.3, v1.34.4] but these conflict with your requirements or minimum-stability.
- symfony/symfony v2.5.2 requires twig/twig ~1.12 -> satisfiable by twig/twig[1.x-dev, v1.12.0, v1.12.0-RC1, v1.12.1, v1.12.2, v1.12.3, v1.13.0, v1.13.1, v1.13.2, v1.14.0, v1.14.1, v1.14.2, v1.15.0, v1.15.1, v1.16.0, v1.16.1, v1.16.2, v1.16.3, v1.17.0, v1.18.0, v1.18.1, v1.18.2, v1.19.0, v1.20.0, v1.21.0, v1.21.1, v1.21.2, v1.22.0, v1.22.1, v1.22.2, v1.22.3, v1.23.0, v1.23.1, v1.23.2, v1.23.3, v1.24.0, v1.24.1, v1.24.2, v1.25.0, v1.26.0, v1.26.1, v1.27.0, v1.28.0, v1.28.1, v1.28.2, v1.29.0, v1.30.0, v1.31.0, v1.32.0, v1.33.0, v1.33.1, v1.33.2, v1.34.0, v1.34.1, v1.34.2, v1.34.3, v1.34.4] but these conflict with your requirements or minimum-stability.
- symfony/symfony v2.5.12 requires twig/twig ~1.12,>=1.12.3 -> satisfiable by twig/twig[1.x-dev, v1.12.3, v1.13.0, v1.13.1, v1.13.2, v1.14.0, v1.14.1, v1.14.2, v1.15.0, v1.15.1, v1.16.0, v1.16.1, v1.16.2, v1.16.3, v1.17.0, v1.18.0, v1.18.1, v1.18.2, v1.19.0, v1.20.0, v1.21.0, v1.21.1, v1.21.2, v1.22.0, v1.22.1, v1.22.2, v1.22.3, v1.23.0, v1.23.1, v1.23.2, v1.23.3, v1.24.0, v1.24.1, v1.24.2, v1.25.0, v1.26.0, v1.26.1, v1.27.0, v1.28.0, v1.28.1, v1.28.2, v1.29.0, v1.30.0, v1.31.0, v1.32.0, v1.33.0, v1.33.1, v1.33.2, v1.34.0, v1.34.1, v1.34.2, v1.34.3, v1.34.4] but these conflict with your requirements or minimum-stability.
- symfony/symfony v2.5.11 requires twig/twig ~1.12,>=1.12.3 -> satisfiable by twig/twig[1.x-dev, v1.12.3, v1.13.0, v1.13.1, v1.13.2, v1.14.0, v1.14.1, v1.14.2, v1.15.0, v1.15.1, v1.16.0, v1.16.1, v1.16.2, v1.16.3, v1.17.0, v1.18.0, v1.18.1, v1.18.2, v1.19.0, v1.20.0, v1.21.0, v1.21.1, v1.21.2, v1.22.0, v1.22.1, v1.22.2, v1.22.3, v1.23.0, v1.23.1, v1.23.2, v1.23.3, v1.24.0, v1.24.1, v1.24.2, v1.25.0, v1.26.0, v1.26.1, v1.27.0, v1.28.0, v1.28.1, v1.28.2, v1.29.0, v1.30.0, v1.31.0, v1.32.0, v1.33.0, v1.33.1, v1.33.2, v1.34.0, v1.34.1, v1.34.2, v1.34.3, v1.34.4] but these conflict with your requirements or minimum-stability.
- symfony/symfony v2.5.10 requires twig/twig ~1.12,>=1.12.3 -> satisfiable by twig/twig[1.x-dev, v1.12.3, v1.13.0, v1.13.1, v1.13.2, v1.14.0, v1.14.1, v1.14.2, v1.15.0, v1.15.1, v1.16.0, v1.16.1, v1.16.2, v1.16.3, v1.17.0, v1.18.0, v1.18.1, v1.18.2, v1.19.0, v1.20.0, v1.21.0, v1.21.1, v1.21.2, v1.22.0, v1.22.1, v1.22.2, v1.22.3, v1.23.0, v1.23.1, v1.23.2, v1.23.3, v1.24.0, v1.24.1, v1.24.2, v1.25.0, v1.26.0, v1.26.1, v1.27.0, v1.28.0, v1.28.1, v1.28.2, v1.29.0, v1.30.0, v1.31.0, v1.32.0, v1.33.0, v1.33.1, v1.33.2, v1.34.0, v1.34.1, v1.34.2, v1.34.3, v1.34.4] but these conflict with your requirements or minimum-stability.
- symfony/symfony v2.5.1 requires twig/twig ~1.12 -> satisfiable by twig/twig[1.x-dev, v1.12.0, v1.12.0-RC1, v1.12.1, v1.12.2, v1.12.3, v1.13.0, v1.13.1, v1.13.2, v1.14.0, v1.14.1, v1.14.2, v1.15.0, v1.15.1, v1.16.0, v1.16.1, v1.16.2, v1.16.3, v1.17.0, v1.18.0, v1.18.1, v1.18.2, v1.19.0, v1.20.0, v1.21.0, v1.21.1, v1.21.2, v1.22.0, v1.22.1, v1.22.2, v1.22.3, v1.23.0, v1.23.1, v1.23.2, v1.23.3, v1.24.0, v1.24.1, v1.24.2, v1.25.0, v1.26.0, v1.26.1, v1.27.0, v1.28.0, v1.28.1, v1.28.2, v1.29.0, v1.30.0, v1.31.0, v1.32.0, v1.33.0, v1.33.1, v1.33.2, v1.34.0, v1.34.1, v1.34.2, v1.34.3, v1.34.4] but these conflict with your requirements or minimum-stability.
- symfony/symfony v2.5.0 requires twig/twig ~1.11 -> satisfiable by twig/twig[1.x-dev, v1.11.0, v1.11.1, v1.12.0, v1.12.0-RC1, v1.12.1, v1.12.2, v1.12.3, v1.13.0, v1.13.1, v1.13.2, v1.14.0, v1.14.1, v1.14.2, v1.15.0, v1.15.1, v1.16.0, v1.16.1, v1.16.2, v1.16.3, v1.17.0, v1.18.0, v1.18.1, v1.18.2, v1.19.0, v1.20.0, v1.21.0, v1.21.1, v1.21.2, v1.22.0, v1.22.1, v1.22.2, v1.22.3, v1.23.0, v1.23.1, v1.23.2, v1.23.3, v1.24.0, v1.24.1, v1.24.2, v1.25.0, v1.26.0, v1.26.1, v1.27.0, v1.28.0, v1.28.1, v1.28.2, v1.29.0, v1.30.0, v1.31.0, v1.32.0, v1.33.0, v1.33.1, v1.33.2, v1.34.0, v1.34.1, v1.34.2, v1.34.3, v1.34.4] but these conflict with your requirements or minimum-stability.
- symfony/symfony v2.4.9 requires twig/twig ~1.12 -> satisfiable by twig/twig[1.x-dev, v1.12.0, v1.12.0-RC1, v1.12.1, v1.12.2, v1.12.3, v1.13.0, v1.13.1, v1.13.2, v1.14.0, v1.14.1, v1.14.2, v1.15.0, v1.15.1, v1.16.0, v1.16.1, v1.16.2, v1.16.3, v1.17.0, v1.18.0, v1.18.1, v1.18.2, v1.19.0, v1.20.0, v1.21.0, v1.21.1, v1.21.2, v1.22.0, v1.22.1, v1.22.2, v1.22.3, v1.23.0, v1.23.1, v1.23.2, v1.23.3, v1.24.0, v1.24.1, v1.24.2, v1.25.0, v1.26.0, v1.26.1, v1.27.0, v1.28.0, v1.28.1, v1.28.2, v1.29.0, v1.30.0, v1.31.0, v1.32.0, v1.33.0, v1.33.1, v1.33.2, v1.34.0, v1.34.1, v1.34.2, v1.34.3, v1.34.4] but these conflict with your requirements or minimum-stability.
- symfony/symfony v2.4.8 requires twig/twig ~1.12 -> satisfiable by twig/twig[1.x-dev, v1.12.0, v1.12.0-RC1, v1.12.1, v1.12.2, v1.12.3, v1.13.0, v1.13.1, v1.13.2, v1.14.0, v1.14.1, v1.14.2, v1.15.0, v1.15.1, v1.16.0, v1.16.1, v1.16.2, v1.16.3, v1.17.0, v1.18.0, v1.18.1, v1.18.2, v1.19.0, v1.20.0, v1.21.0, v1.21.1, v1.21.2, v1.22.0, v1.22.1, v1.22.2, v1.22.3, v1.23.0, v1.23.1, v1.23.2, v1.23.3, v1.24.0, v1.24.1, v1.24.2, v1.25.0, v1.26.0, v1.26.1, v1.27.0, v1.28.0, v1.28.1, v1.28.2, v1.29.0, v1.30.0, v1.31.0, v1.32.0, v1.33.0, v1.33.1, v1.33.2, v1.34.0, v1.34.1, v1.34.2, v1.34.3, v1.34.4] but these conflict with your requirements or minimum-stability.
- symfony/symfony v2.4.7 requires twig/twig ~1.12 -> satisfiable by twig/twig[1.x-dev, v1.12.0, v1.12.0-RC1, v1.12.1, v1.12.2, v1.12.3, v1.13.0, v1.13.1, v1.13.2, v1.14.0, v1.14.1, v1.14.2, v1.15.0, v1.15.1, v1.16.0, v1.16.1, v1.16.2, v1.16.3, v1.17.0, v1.18.0, v1.18.1, v1.18.2, v1.19.0, v1.20.0, v1.21.0, v1.21.1, v1.21.2, v1.22.0, v1.22.1, v1.22.2, v1.22.3, v1.23.0, v1.23.1, v1.23.2, v1.23.3, v1.24.0, v1.24.1, v1.24.2, v1.25.0, v1.26.0, v1.26.1, v1.27.0, v1.28.0, v1.28.1, v1.28.2, v1.29.0, v1.30.0, v1.31.0, v1.32.0, v1.33.0, v1.33.1, v1.33.2, v1.34.0, v1.34.1, v1.34.2, v1.34.3, v1.34.4] but these conflict with your requirements or minimum-stability.
- symfony/symfony v2.4.6 requires twig/twig ~1.11 -> satisfiable by twig/twig[1.x-dev, v1.11.0, v1.11.1, v1.12.0, v1.12.0-RC1, v1.12.1, v1.12.2, v1.12.3, v1.13.0, v1.13.1, v1.13.2, v1.14.0, v1.14.1, v1.14.2, v1.15.0, v1.15.1, v1.16.0, v1.16.1, v1.16.2, v1.16.3, v1.17.0, v1.18.0, v1.18.1, v1.18.2, v1.19.0, v1.20.0, v1.21.0, v1.21.1, v1.21.2, v1.22.0, v1.22.1, v1.22.2, v1.22.3, v1.23.0, v1.23.1, v1.23.2, v1.23.3, v1.24.0, v1.24.1, v1.24.2, v1.25.0, v1.26.0, v1.26.1, v1.27.0, v1.28.0, v1.28.1, v1.28.2, v1.29.0, v1.30.0, v1.31.0, v1.32.0, v1.33.0, v1.33.1, v1.33.2, v1.34.0, v1.34.1, v1.34.2, v1.34.3, v1.34.4] but these conflict with your requirements or minimum-stability.
- symfony/symfony v2.4.5 requires twig/twig ~1.11 -> satisfiable by twig/twig[1.x-dev, v1.11.0, v1.11.1, v1.12.0, v1.12.0-RC1, v1.12.1, v1.12.2, v1.12.3, v1.13.0, v1.13.1, v1.13.2, v1.14.0, v1.14.1, v1.14.2, v1.15.0, v1.15.1, v1.16.0, v1.16.1, v1.16.2, v1.16.3, v1.17.0, v1.18.0, v1.18.1, v1.18.2, v1.19.0, v1.20.0, v1.21.0, v1.21.1, v1.21.2, v1.22.0, v1.22.1, v1.22.2, v1.22.3, v1.23.0, v1.23.1, v1.23.2, v1.23.3, v1.24.0, v1.24.1, v1.24.2, v1.25.0, v1.26.0, v1.26.1, v1.27.0, v1.28.0, v1.28.1, v1.28.2, v1.29.0, v1.30.0, v1.31.0, v1.32.0, v1.33.0, v1.33.1, v1.33.2, v1.34.0, v1.34.1, v1.34.2, v1.34.3, v1.34.4] but these conflict with your requirements or minimum-stability.
- symfony/symfony v2.4.4 requires twig/twig ~1.11 -> satisfiable by twig/twig[1.x-dev, v1.11.0, v1.11.1, v1.12.0, v1.12.0-RC1, v1.12.1, v1.12.2, v1.12.3, v1.13.0, v1.13.1, v1.13.2, v1.14.0, v1.14.1, v1.14.2, v1.15.0, v1.15.1, v1.16.0, v1.16.1, v1.16.2, v1.16.3, v1.17.0, v1.18.0, v1.18.1, v1.18.2, v1.19.0, v1.20.0, v1.21.0, v1.21.1, v1.21.2, v1.22.0, v1.22.1, v1.22.2, v1.22.3, v1.23.0, v1.23.1, v1.23.2, v1.23.3, v1.24.0, v1.24.1, v1.24.2, v1.25.0, v1.26.0, v1.26.1, v1.27.0, v1.28.0, v1.28.1, v1.28.2, v1.29.0, v1.30.0, v1.31.0, v1.32.0, v1.33.0, v1.33.1, v1.33.2, v1.34.0, v1.34.1, v1.34.2, v1.34.3, v1.34.4] but these conflict with your requirements or minimum-stability.
- symfony/symfony v2.4.3 requires twig/twig ~1.11 -> satisfiable by twig/twig[1.x-dev, v1.11.0, v1.11.1, v1.12.0, v1.12.0-RC1, v1.12.1, v1.12.2, v1.12.3, v1.13.0, v1.13.1, v1.13.2, v1.14.0, v1.14.1, v1.14.2, v1.15.0, v1.15.1, v1.16.0, v1.16.1, v1.16.2, v1.16.3, v1.17.0, v1.18.0, v1.18.1, v1.18.2, v1.19.0, v1.20.0, v1.21.0, v1.21.1, v1.21.2, v1.22.0, v1.22.1, v1.22.2, v1.22.3, v1.23.0, v1.23.1, v1.23.2, v1.23.3, v1.24.0, v1.24.1, v1.24.2, v1.25.0, v1.26.0, v1.26.1, v1.27.0, v1.28.0, v1.28.1, v1.28.2, v1.29.0, v1.30.0, v1.31.0, v1.32.0, v1.33.0, v1.33.1, v1.33.2, v1.34.0, v1.34.1, v1.34.2, v1.34.3, v1.34.4] but these conflict with your requirements or minimum-stability.
- symfony/symfony v2.4.2 requires twig/twig ~1.11 -> satisfiable by twig/twig[1.x-dev, v1.11.0, v1.11.1, v1.12.0, v1.12.0-RC1, v1.12.1, v1.12.2, v1.12.3, v1.13.0, v1.13.1, v1.13.2, v1.14.0, v1.14.1, v1.14.2, v1.15.0, v1.15.1, v1.16.0, v1.16.1, v1.16.2, v1.16.3, v1.17.0, v1.18.0, v1.18.1, v1.18.2, v1.19.0, v1.20.0, v1.21.0, v1.21.1, v1.21.2, v1.22.0, v1.22.1, v1.22.2, v1.22.3, v1.23.0, v1.23.1, v1.23.2, v1.23.3, v1.24.0, v1.24.1, v1.24.2, v1.25.0, v1.26.0, v1.26.1, v1.27.0, v1.28.0, v1.28.1, v1.28.2, v1.29.0, v1.30.0, v1.31.0, v1.32.0, v1.33.0, v1.33.1, v1.33.2, v1.34.0, v1.34.1, v1.34.2, v1.34.3, v1.34.4] but these conflict with your requirements or minimum-stability.
- symfony/symfony v2.4.10 requires twig/twig ~1.12 -> satisfiable by twig/twig[1.x-dev, v1.12.0, v1.12.0-RC1, v1.12.1, v1.12.2, v1.12.3, v1.13.0, v1.13.1, v1.13.2, v1.14.0, v1.14.1, v1.14.2, v1.15.0, v1.15.1, v1.16.0, v1.16.1, v1.16.2, v1.16.3, v1.17.0, v1.18.0, v1.18.1, v1.18.2, v1.19.0, v1.20.0, v1.21.0, v1.21.1, v1.21.2, v1.22.0, v1.22.1, v1.22.2, v1.22.3, v1.23.0, v1.23.1, v1.23.2, v1.23.3, v1.24.0, v1.24.1, v1.24.2, v1.25.0, v1.26.0, v1.26.1, v1.27.0, v1.28.0, v1.28.1, v1.28.2, v1.29.0, v1.30.0, v1.31.0, v1.32.0, v1.33.0, v1.33.1, v1.33.2, v1.34.0, v1.34.1, v1.34.2, v1.34.3, v1.34.4] but these conflict with your requirements or minimum-stability.
- symfony/symfony v2.4.1 requires twig/twig ~1.11 -> satisfiable by twig/twig[1.x-dev, v1.11.0, v1.11.1, v1.12.0, v1.12.0-RC1, v1.12.1, v1.12.2, v1.12.3, v1.13.0, v1.13.1, v1.13.2, v1.14.0, v1.14.1, v1.14.2, v1.15.0, v1.15.1, v1.16.0, v1.16.1, v1.16.2, v1.16.3, v1.17.0, v1.18.0, v1.18.1, v1.18.2, v1.19.0, v1.20.0, v1.21.0, v1.21.1, v1.21.2, v1.22.0, v1.22.1, v1.22.2, v1.22.3, v1.23.0, v1.23.1, v1.23.2, v1.23.3, v1.24.0, v1.24.1, v1.24.2, v1.25.0, v1.26.0, v1.26.1, v1.27.0, v1.28.0, v1.28.1, v1.28.2, v1.29.0, v1.30.0, v1.31.0, v1.32.0, v1.33.0, v1.33.1, v1.33.2, v1.34.0, v1.34.1, v1.34.2, v1.34.3, v1.34.4] but these conflict with your requirements or minimum-stability.
- symfony/symfony v2.4.0 requires twig/twig ~1.11 -> satisfiable by twig/twig[1.x-dev, v1.11.0, v1.11.1, v1.12.0, v1.12.0-RC1, v1.12.1, v1.12.2, v1.12.3, v1.13.0, v1.13.1, v1.13.2, v1.14.0, v1.14.1, v1.14.2, v1.15.0, v1.15.1, v1.16.0, v1.16.1, v1.16.2, v1.16.3, v1.17.0, v1.18.0, v1.18.1, v1.18.2, v1.19.0, v1.20.0, v1.21.0, v1.21.1, v1.21.2, v1.22.0, v1.22.1, v1.22.2, v1.22.3, v1.23.0, v1.23.1, v1.23.2, v1.23.3, v1.24.0, v1.24.1, v1.24.2, v1.25.0, v1.26.0, v1.26.1, v1.27.0, v1.28.0, v1.28.1, v1.28.2, v1.29.0, v1.30.0, v1.31.0, v1.32.0, v1.33.0, v1.33.1, v1.33.2, v1.34.0, v1.34.1, v1.34.2, v1.34.3, v1.34.4] but these conflict with your requirements or minimum-stability.
- symfony/symfony v2.3.9 requires twig/twig ~1.11 -> satisfiable by twig/twig[1.x-dev, v1.11.0, v1.11.1, v1.12.0, v1.12.0-RC1, v1.12.1, v1.12.2, v1.12.3, v1.13.0, v1.13.1, v1.13.2, v1.14.0, v1.14.1, v1.14.2, v1.15.0, v1.15.1, v1.16.0, v1.16.1, v1.16.2, v1.16.3, v1.17.0, v1.18.0, v1.18.1, v1.18.2, v1.19.0, v1.20.0, v1.21.0, v1.21.1, v1.21.2, v1.22.0, v1.22.1, v1.22.2, v1.22.3, v1.23.0, v1.23.1, v1.23.2, v1.23.3, v1.24.0, v1.24.1, v1.24.2, v1.25.0, v1.26.0, v1.26.1, v1.27.0, v1.28.0, v1.28.1, v1.28.2, v1.29.0, v1.30.0, v1.31.0, v1.32.0, v1.33.0, v1.33.1, v1.33.2, v1.34.0, v1.34.1, v1.34.2, v1.34.3, v1.34.4] but these conflict with your requirements or minimum-stability.
- symfony/symfony v2.3.8 requires twig/twig ~1.11 -> satisfiable by twig/twig[1.x-dev, v1.11.0, v1.11.1, v1.12.0, v1.12.0-RC1, v1.12.1, v1.12.2, v1.12.3, v1.13.0, v1.13.1, v1.13.2, v1.14.0, v1.14.1, v1.14.2, v1.15.0, v1.15.1, v1.16.0, v1.16.1, v1.16.2, v1.16.3, v1.17.0, v1.18.0, v1.18.1, v1.18.2, v1.19.0, v1.20.0, v1.21.0, v1.21.1, v1.21.2, v1.22.0, v1.22.1, v1.22.2, v1.22.3, v1.23.0, v1.23.1, v1.23.2, v1.23.3, v1.24.0, v1.24.1, v1.24.2, v1.25.0, v1.26.0, v1.26.1, v1.27.0, v1.28.0, v1.28.1, v1.28.2, v1.29.0, v1.30.0, v1.31.0, v1.32.0, v1.33.0, v1.33.1, v1.33.2, v1.34.0, v1.34.1, v1.34.2, v1.34.3, v1.34.4] but these conflict with your requirements or minimum-stability.
- symfony/symfony v2.3.7 requires twig/twig ~1.11 -> satisfiable by twig/twig[1.x-dev, v1.11.0, v1.11.1, v1.12.0, v1.12.0-RC1, v1.12.1, v1.12.2, v1.12.3, v1.13.0, v1.13.1, v1.13.2, v1.14.0, v1.14.1, v1.14.2, v1.15.0, v1.15.1, v1.16.0, v1.16.1, v1.16.2, v1.16.3, v1.17.0, v1.18.0, v1.18.1, v1.18.2, v1.19.0, v1.20.0, v1.21.0, v1.21.1, v1.21.2, v1.22.0, v1.22.1, v1.22.2, v1.22.3, v1.23.0, v1.23.1, v1.23.2, v1.23.3, v1.24.0, v1.24.1, v1.24.2, v1.25.0, v1.26.0, v1.26.1, v1.27.0, v1.28.0, v1.28.1, v1.28.2, v1.29.0, v1.30.0, v1.31.0, v1.32.0, v1.33.0, v1.33.1, v1.33.2, v1.34.0, v1.34.1, v1.34.2, v1.34.3, v1.34.4] but these conflict with your requirements or minimum-stability.
- symfony/symfony v2.3.6 requires twig/twig ~1.11 -> satisfiable by twig/twig[1.x-dev, v1.11.0, v1.11.1, v1.12.0, v1.12.0-RC1, v1.12.1, v1.12.2, v1.12.3, v1.13.0, v1.13.1, v1.13.2, v1.14.0, v1.14.1, v1.14.2, v1.15.0, v1.15.1, v1.16.0, v1.16.1, v1.16.2, v1.16.3, v1.17.0, v1.18.0, v1.18.1, v1.18.2, v1.19.0, v1.20.0, v1.21.0, v1.21.1, v1.21.2, v1.22.0, v1.22.1, v1.22.2, v1.22.3, v1.23.0, v1.23.1, v1.23.2, v1.23.3, v1.24.0, v1.24.1, v1.24.2, v1.25.0, v1.26.0, v1.26.1, v1.27.0, v1.28.0, v1.28.1, v1.28.2, v1.29.0, v1.30.0, v1.31.0, v1.32.0, v1.33.0, v1.33.1, v1.33.2, v1.34.0, v1.34.1, v1.34.2, v1.34.3, v1.34.4] but these conflict with your requirements or minimum-stability.
- symfony/symfony v2.3.5 requires twig/twig ~1.11 -> satisfiable by twig/twig[1.x-dev, v1.11.0, v1.11.1, v1.12.0, v1.12.0-RC1, v1.12.1, v1.12.2, v1.12.3, v1.13.0, v1.13.1, v1.13.2, v1.14.0, v1.14.1, v1.14.2, v1.15.0, v1.15.1, v1.16.0, v1.16.1, v1.16.2, v1.16.3, v1.17.0, v1.18.0, v1.18.1, v1.18.2, v1.19.0, v1.20.0, v1.21.0, v1.21.1, v1.21.2, v1.22.0, v1.22.1, v1.22.2, v1.22.3, v1.23.0, v1.23.1, v1.23.2, v1.23.3, v1.24.0, v1.24.1, v1.24.2, v1.25.0, v1.26.0, v1.26.1, v1.27.0, v1.28.0, v1.28.1, v1.28.2, v1.29.0, v1.30.0, v1.31.0, v1.32.0, v1.33.0, v1.33.1, v1.33.2, v1.34.0, v1.34.1, v1.34.2, v1.34.3, v1.34.4] but these conflict with your requirements or minimum-stability.
- symfony/symfony v2.3.4 requires twig/twig ~1.11 -> satisfiable by twig/twig[1.x-dev, v1.11.0, v1.11.1, v1.12.0, v1.12.0-RC1, v1.12.1, v1.12.2, v1.12.3, v1.13.0, v1.13.1, v1.13.2, v1.14.0, v1.14.1, v1.14.2, v1.15.0, v1.15.1, v1.16.0, v1.16.1, v1.16.2, v1.16.3, v1.17.0, v1.18.0, v1.18.1, v1.18.2, v1.19.0, v1.20.0, v1.21.0, v1.21.1, v1.21.2, v1.22.0, v1.22.1, v1.22.2, v1.22.3, v1.23.0, v1.23.1, v1.23.2, v1.23.3, v1.24.0, v1.24.1, v1.24.2, v1.25.0, v1.26.0, v1.26.1, v1.27.0, v1.28.0, v1.28.1, v1.28.2, v1.29.0, v1.30.0, v1.31.0, v1.32.0, v1.33.0, v1.33.1, v1.33.2, v1.34.0, v1.34.1, v1.34.2, v1.34.3, v1.34.4] but these conflict with your requirements or minimum-stability.
- symfony/symfony v2.3.31 requires twig/twig ~1.12,>=1.12.3 -> satisfiable by twig/twig[1.x-dev, v1.12.3, v1.13.0, v1.13.1, v1.13.2, v1.14.0, v1.14.1, v1.14.2, v1.15.0, v1.15.1, v1.16.0, v1.16.1, v1.16.2, v1.16.3, v1.17.0, v1.18.0, v1.18.1, v1.18.2, v1.19.0, v1.20.0, v1.21.0, v1.21.1, v1.21.2, v1.22.0, v1.22.1, v1.22.2, v1.22.3, v1.23.0, v1.23.1, v1.23.2, v1.23.3, v1.24.0, v1.24.1, v1.24.2, v1.25.0, v1.26.0, v1.26.1, v1.27.0, v1.28.0, v1.28.1, v1.28.2, v1.29.0, v1.30.0, v1.31.0, v1.32.0, v1.33.0, v1.33.1, v1.33.2, v1.34.0, v1.34.1, v1.34.2, v1.34.3, v1.34.4] but these conflict with your requirements or minimum-stability.
- symfony/symfony v2.3.30 requires twig/twig ~1.12,>=1.12.3 -> satisfiable by twig/twig[1.x-dev, v1.12.3, v1.13.0, v1.13.1, v1.13.2, v1.14.0, v1.14.1, v1.14.2, v1.15.0, v1.15.1, v1.16.0, v1.16.1, v1.16.2, v1.16.3, v1.17.0, v1.18.0, v1.18.1, v1.18.2, v1.19.0, v1.20.0, v1.21.0, v1.21.1, v1.21.2, v1.22.0, v1.22.1, v1.22.2, v1.22.3, v1.23.0, v1.23.1, v1.23.2, v1.23.3, v1.24.0, v1.24.1, v1.24.2, v1.25.0, v1.26.0, v1.26.1, v1.27.0, v1.28.0, v1.28.1, v1.28.2, v1.29.0, v1.30.0, v1.31.0, v1.32.0, v1.33.0, v1.33.1, v1.33.2, v1.34.0, v1.34.1, v1.34.2, v1.34.3, v1.34.4] but these conflict with your requirements or minimum-stability.
- symfony/symfony v2.3.3 requires twig/twig ~1.11 -> satisfiable by twig/twig[1.x-dev, v1.11.0, v1.11.1, v1.12.0, v1.12.0-RC1, v1.12.1, v1.12.2, v1.12.3, v1.13.0, v1.13.1, v1.13.2, v1.14.0, v1.14.1, v1.14.2, v1.15.0, v1.15.1, v1.16.0, v1.16.1, v1.16.2, v1.16.3, v1.17.0, v1.18.0, v1.18.1, v1.18.2, v1.19.0, v1.20.0, v1.21.0, v1.21.1, v1.21.2, v1.22.0, v1.22.1, v1.22.2, v1.22.3, v1.23.0, v1.23.1, v1.23.2, v1.23.3, v1.24.0, v1.24.1, v1.24.2, v1.25.0, v1.26.0, v1.26.1, v1.27.0, v1.28.0, v1.28.1, v1.28.2, v1.29.0, v1.30.0, v1.31.0, v1.32.0, v1.33.0, v1.33.1, v1.33.2, v1.34.0, v1.34.1, v1.34.2, v1.34.3, v1.34.4] but these conflict with your requirements or minimum-stability.
- symfony/symfony v2.3.29 requires twig/twig ~1.12,>=1.12.3 -> satisfiable by twig/twig[1.x-dev, v1.12.3, v1.13.0, v1.13.1, v1.13.2, v1.14.0, v1.14.1, v1.14.2, v1.15.0, v1.15.1, v1.16.0, v1.16.1, v1.16.2, v1.16.3, v1.17.0, v1.18.0, v1.18.1, v1.18.2, v1.19.0, v1.20.0, v1.21.0, v1.21.1, v1.21.2, v1.22.0, v1.22.1, v1.22.2, v1.22.3, v1.23.0, v1.23.1, v1.23.2, v1.23.3, v1.24.0, v1.24.1, v1.24.2, v1.25.0, v1.26.0, v1.26.1, v1.27.0, v1.28.0, v1.28.1, v1.28.2, v1.29.0, v1.30.0, v1.31.0, v1.32.0, v1.33.0, v1.33.1, v1.33.2, v1.34.0, v1.34.1, v1.34.2, v1.34.3, v1.34.4] but these conflict with your requirements or minimum-stability.
- symfony/symfony v2.3.28 requires twig/twig ~1.12,>=1.12.3 -> satisfiable by twig/twig[1.x-dev, v1.12.3, v1.13.0, v1.13.1, v1.13.2, v1.14.0, v1.14.1, v1.14.2, v1.15.0, v1.15.1, v1.16.0, v1.16.1, v1.16.2, v1.16.3, v1.17.0, v1.18.0, v1.18.1, v1.18.2, v1.19.0, v1.20.0, v1.21.0, v1.21.1, v1.21.2, v1.22.0, v1.22.1, v1.22.2, v1.22.3, v1.23.0, v1.23.1, v1.23.2, v1.23.3, v1.24.0, v1.24.1, v1.24.2, v1. 1E79 25.0, v1.26.0, v1.26.1, v1.27.0, v1.28.0, v1.28.1, v1.28.2, v1.29.0, v1.30.0, v1.31.0, v1.32.0, v1.33.0, v1.33.1, v1.33.2, v1.34.0, v1.34.1, v1.34.2, v1.34.3, v1.34.4] but these conflict with your requirements or minimum-stability.
- symfony/symfony v2.3.27 requires twig/twig ~1.12,>=1.12.3 -> satisfiable by twig/twig[1.x-dev, v1.12.3, v1.13.0, v1.13.1, v1.13.2, v1.14.0, v1.14.1, v1.14.2, v1.15.0, v1.15.1, v1.16.0, v1.16.1, v1.16.2, v1.16.3, v1.17.0, v1.18.0, v1.18.1, v1.18.2, v1.19.0, v1.20.0, v1.21.0, v1.21.1, v1.21.2, v1.22.0, v1.22.1, v1.22.2, v1.22.3, v1.23.0, v1.23.1, v1.23.2, v1.23.3, v1.24.0, v1.24.1, v1.24.2, v1.25.0, v1.26.0, v1.26.1, v1.27.0, v1.28.0, v1.28.1, v1.28.2, v1.29.0, v1.30.0, v1.31.0, v1.32.0, v1.33.0, v1.33.1, v1.33.2, v1.34.0, v1.34.1, v1.34.2, v1.34.3, v1.34.4] but these conflict with your requirements or minimum-stability.
- symfony/symfony v2.3.26 requires twig/twig ~1.12,>=1.12.3 -> satisfiable by twig/twig[1.x-dev, v1.12.3, v1.13.0, v1.13.1, v1.13.2, v1.14.0, v1.14.1, v1.14.2, v1.15.0, v1.15.1, v1.16.0, v1.16.1, v1.16.2, v1.16.3, v1.17.0, v1.18.0, v1.18.1, v1.18.2, v1.19.0, v1.20.0, v1.21.0, v1.21.1, v1.21.2, v1.22.0, v1.22.1, v1.22.2, v1.22.3, v1.23.0, v1.23.1, v1.23.2, v1.23.3, v1.24.0, v1.24.1, v1.24.2, v1.25.0, v1.26.0, v1.26.1, v1.27.0, v1.28.0, v1.28.1, v1.28.2, v1.29.0, v1.30.0, v1.31.0, v1.32.0, v1.33.0, v1.33.1, v1.33.2, v1.34.0, v1.34.1, v1.34.2, v1.34.3, v1.34.4] but these conflict with your requirements or minimum-stability.
- symfony/symfony v2.3.25 requires twig/twig ~1.12,>=1.12.3 -> satisfiable by twig/twig[1.x-dev, v1.12.3, v1.13.0, v1.13.1, v1.13.2, v1.14.0, v1.14.1, v1.14.2, v1.15.0, v1.15.1, v1.16.0, v1.16.1, v1.16.2, v1.16.3, v1.17.0, v1.18.0, v1.18.1, v1.18.2, v1.19.0, v1.20.0, v1.21.0, v1.21.1, v1.21.2, v1.22.0, v1.22.1, v1.22.2, v1.22.3, v1.23.0, v1.23.1, v1.23.2, v1.23.3, v1.24.0, v1.24.1, v1.24.2, v1.25.0, v1.26.0, v1.26.1, v1.27.0, v1.28.0, v1.28.1, v1.28.2, v1.29.0, v1.30.0, v1.31.0, v1.32.0, v1.33.0, v1.33.1, v1.33.2, v1.34.0, v1.34.1, v1.34.2, v1.34.3, v1.34.4] but these conflict with your requirements or minimum-stability.
- symfony/symfony v2.3.24 requires twig/twig ~1.12,>=1.12.3 -> satisfiable by twig/twig[1.x-dev, v1.12.3, v1.13.0, v1.13.1, v1.13.2, v1.14.0, v1.14.1, v1.14.2, v1.15.0, v1.15.1, v1.16.0, v1.16.1, v1.16.2, v1.16.3, v1.17.0, v1.18.0, v1.18.1, v1.18.2, v1.19.0, v1.20.0, v1.21.0, v1.21.1, v1.21.2, v1.22.0, v1.22.1, v1.22.2, v1.22.3, v1.23.0, v1.23.1, v1.23.2, v1.23.3, v1.24.0, v1.24.1, v1.24.2, v1.25.0, v1.26.0, v1.26.1, v1.27.0, v1.28.0, v1.28.1, v1.28.2, v1.29.0, v1.30.0, v1.31.0, v1.32.0, v1.33.0, v1.33.1, v1.33.2, v1.34.0, v1.34.1, v1.34.2, v1.34.3, v1.34.4] but these conflict with your requirements or minimum-stability.
- symfony/symfony v2.3.23 requires twig/twig ~1.12 -> satisfiable by twig/twig[1.x-dev, v1.12.0, v1.12.0-RC1, v1.12.1, v1.12.2, v1.12.3, v1.13.0, v1.13.1, v1.13.2, v1.14.0, v1.14.1, v1.14.2, v1.15.0, v1.15.1, v1.16.0, v1.16.1, v1.16.2, v1.16.3, v1.17.0, v1.18.0, v1.18.1, v1.18.2, v1.19.0, v1.20.0, v1.21.0, v1.21.1, v1.21.2, v1.22.0, v1.22.1, v1.22.2, v1.22.3, v1.23.0, v1.23.1, v1.23.2, v1.23.3, v1.24.0, v1.24.1, v1.24.2, v1.25.0, v1.26.0, v1.26.1, v1.27.0, v1.28.0, v1.28.1, v1.28.2, v1.29.0, v1.30.0, v1.31.0, v1.32.0, v1.33.0, v1.33.1, v1.33.2, v1.34.0, v1.34.1, v1.34.2, v1.34.3, v1.34.4] but these conflict with your requirements or minimum-stability.
- symfony/symfony v2.3.22 requires twig/twig ~1.12 -> satisfiable by twig/twig[1.x-dev, v1.12.0, v1.12.0-RC1, v1.12.1, v1.12.2, v1.12.3, v1.13.0, v1.13.1, v1.13.2, v1.14.0, v1.14.1, v1.14.2, v1.15.0, v1.15.1, v1.16.0, v1.16.1, v1.16.2, v1.16.3, v1.17.0, v1.18.0, v1.18.1, v1.18.2, v1.19.0, v1.20.0, v1.21.0, v1.21.1, v1.21.2, v1.22.0, v1.22.1, v1.22.2, v1.22.3, v1.23.0, v1.23.1, v1.23.2, v1.23.3, v1.24.0, v1.24.1, v1.24.2, v1.25.0, v1.26.0, v1.26.1, v1.27.0, v1.28.0, v1.28.1, v1.28.2, v1.29.0, v1.30.0, v1.31.0, v1.32.0, v1.33.0, v1.33.1, v1.33.2, v1.34.0, v1.34.1, v1.34.2, v1.34.3, v1.34.4] but these conflict with your requirements or minimum-stability.
- symfony/symfony v2.3.21 requires twig/twig ~1.12 -> satisfiable by twig/twig[1.x-dev, v1.12.0, v1.12.0-RC1, v1.12.1, v1.12.2, v1.12.3, v1.13.0, v1.13.1, v1.13.2, v1.14.0, v1.14.1, v1.14.2, v1.15.0, v1.15.1, v1.16.0, v1.16.1, v1.16.2, v1.16.3, v1.17.0, v1.18.0, v1.18.1, v1.18.2, v1.19.0, v1.20.0, v1.21.0, v1.21.1, v1.21.2, v1.22.0, v1.22.1, v1.22.2, v1.22.3, v1.23.0, v1.23.1, v1.23.2, v1.23.3, v1.24.0, v1.24.1, v1.24.2, v1.25.0, v1.26.0, v1.26.1, v1.27.0, v1.28.0, v1.28.1, v1.28.2, v1.29.0, v1.30.0, v1.31.0, v1.32.0, v1.33.0, v1.33.1, v1.33.2, v1.34.0, v1.34.1, v1.34.2, v1.34.3, v1.34.4] but these conflict with your requirements or minimum-stability.
- symfony/symfony v2.3.20 requires twig/twig ~1.12 -> satisfiable by twig/twig[1.x-dev, v1.12.0, v1.12.0-RC1, v1.12.1, v1.12.2, v1.12.3, v1.13.0, v1.13.1, v1.13.2, v1.14.0, v1.14.1, v1.14.2, v1.15.0, v1.15.1, v1.16.0, v1.16.1, v1.16.2, v1.16.3, v1.17.0, v1.18.0, v1.18.1, v1.18.2, v1.19.0, v1.20.0, v1.21.0, v1.21.1, v1.21.2, v1.22.0, v1.22.1, v1.22.2, v1.22.3, v1.23.0, v1.23.1, v1.23.2, v1.23.3, v1.24.0, v1.24.1, v1.24.2, v1.25.0, v1.26.0, v1.26.1, v1.27.0, v1.28.0, v1.28.1, v1.28.2, v1.29.0, v1.30.0, v1.31.0, v1.32.0, v1.33.0, v1.33.1, v1.33.2, v1.34.0, v1.34.1, v1.34.2, v1.34.3, v1.34.4] but these conflict with your requirements or minimum-stability.
- symfony/symfony v2.3.2 requires twig/twig ~1.11 -> satisfiable by twig/twig[1.x-dev, v1.11.0, v1.11.1, v1.12.0, v1.12.0-RC1, v1.12.1, v1.12.2, v1.12.3, v1.13.0, v1.13.1, v1.13.2, v1.14.0, v1.14.1, v1.14.2, v1.15.0, v1.15.1, v1.16.0, v1.16.1, v1.16.2, v1.16.3, v1.17.0, v1.18.0, v1.18.1, v1.18.2, v1.19.0, v1.20.0, v1.21.0, v1.21.1, v1.21.2, v1.22.0, v1.22.1, v1.22.2, v1.22.3, v1.23.0, v1.23.1, v1.23.2, v1.23.3, v1.24.0, v1.24.1, v1.24.2, v1.25.0, v1.26.0, v1.26.1, v1.27.0, v1.28.0, v1.28.1, v1.28.2, v1.29.0, v1.30.0, v1.31.0, v1.32.0, v1.33.0, v1.33.1, v1.33.2, v1.34.0, v1.34.1, v1.34.2, v1.34.3, v1.34.4] but these conflict with your requirements or minimum-stability.
- symfony/symfony v2.3.19 requires twig/twig ~1.12 -> satisfiable by twig/twig[1.x-dev, v1.12.0, v1.12.0-RC1, v1.12.1, v1.12.2, v1.12.3, v1.13.0, v1.13.1, v1.13.2, v1.14.0, v1.14.1, v1.14.2, v1.15.0, v1.15.1, v1.16.0, v1.16.1, v1.16.2, v1.16.3, v1.17.0, v1.18.0, v1.18.1, v1.18.2, v1.19.0, v1.20.0, v1.21.0, v1.21.1, v1.21.2, v1.22.0, v1.22.1, v1.22.2, v1.22.3, v1.23.0, v1.23.1, v1.23.2, v1.23.3, v1.24.0, v1.24.1, v1.24.2, v1.25.0, v1.26.0, v1.26.1, v1.27.0, v1.28.0, v1.28.1, v1.28.2, v1.29.0, v1.30.0, v1.31.0, v1.32.0, v1.33.0, v1.33.1, v1.33.2, v1.34.0, v1.34.1, v1.34.2, v1.34.3, v1.34.4] but these conflict with your requirements or minimum-stability.
- symfony/symfony v2.3.18 requires twig/twig ~1.12 -> satisfiable by twig/twig[1.x-dev, v1.12.0, v1.12.0-RC1, v1.12.1, v1.12.2, v1.12.3, v1.13.0, v1.13.1, v1.13.2, v1.14.0, v1.14.1, v1.14.2, v1.15.0, v1.15.1, v1.16.0, v1.16.1, v1.16.2, v1.16.3, v1.17.0, v1.18.0, v1.18.1, v1.18.2, v1.19.0, v1.20.0, v1.21.0, v1.21.1, v1.21.2, v1.22.0, v1.22.1, v1.22.2, v1.22.3, v1.23.0, v1.23.1, v1.23.2, v1.23.3, v1.24.0, v1.24.1, v1.24.2, v1.25.0, v1.26.0, v1.26.1, v1.27.0, v1.28.0, v1.28.1, v1.28.2, v1.29.0, v1.30.0, v1.31.0, v1.32.0, v1.33.0, v1.33.1, v1.33.2, v1.34.0, v1.34.1, v1.34.2, v1.34.3, v1.34.4] but these conflict with your requirements or minimum-stability.
- symfony/symfony v2.3.17 requires twig/twig ~1.12 -> satisfiable by twig/twig[1.x-dev, v1.12.0, v1.12.0-RC1, v1.12.1, v1.12.2, v1.12.3, v1.13.0, v1.13.1, v1.13.2, v1.14.0, v1.14.1, v1.14.2, v1.15.0, v1.15.1, v1.16.0, v1.16.1, v1.16.2, v1.16.3, v1.17.0, v1.18.0, v1.18.1, v1.18.2, v1.19.0, v1.20.0, v1.21.0, v1.21.1, v1. F438 21.2, v1.22.0, v1.22.1, v1.22.2, v1.22.3, v1.23.0, v1.23.1, v1.23.2, v1.23.3, v1.24.0, v1.24.1, v1.24.2, v1.25.0, v1.26.0, v1.26.1, v1.27.0, v1.28.0, v1.28.1, v1.28.2, v1.29.0, v1.30.0, v1.31.0, v1.32.0, v1.33.0, v1.33.1, v1.33.2, v1.34.0, v1.34.1, v1.34.2, v1.34.3, v1.34.4] but these conflict with your requirements or minimum-stability.
- symfony/symfony v2.3.16 requires twig/twig ~1.11 -> satisfiable by twig/twig[1.x-dev, v1.11.0, v1.11.1, v1.12.0, v1.12.0-RC1, v1.12.1, v1.12.2, v1.12.3, v1.13.0, v1.13.1, v1.13.2, v1.14.0, v1.14.1, v1.14.2, v1.15.0, v1.15.1, v1.16.0, v1.16.1, v1.16.2, v1.16.3, v1.17.0, v1.18.0, v1.18.1, v1.18.2, v1.19.0, v1.20.0, v1.21.0, v1.21.1, v1.21.2, v1.22.0, v1.22.1, v1.22.2, v1.22.3, v1.23.0, v1.23.1, v1.23.2, v1.23.3, v1.24.0, v1.24.1, v1.24.2, v1.25.0, v1.26.0, v1.26.1, v1.27.0, v1.28.0, v1.28.1, v1.28.2, v1.29.0, v1.30.0, v1.31.0, v1.32.0, v1.33.0, v1.33.1, v1.33.2, v1.34.0, v1.34.1, v1.34.2, v1.34.3, v1.34.4] but these conflict with your requirements or minimum-stability.
- symfony/symfony v2.3.15 requires twig/twig ~1.11 -> satisfiable by twig/twig[1.x-dev, v1.11.0, v1.11.1, v1.12.0, v1.12.0-RC1, v1.12.1, v1.12.2, v1.12.3, v1.13.0, v1.13.1, v1.13.2, v1.14.0, v1.14.1, v1.14.2, v1.15.0, v1.15.1, v1.16.0, v1.16.1, v1.16.2, v1.16.3, v1.17.0, v1.18.0, v1.18.1, v1.18.2, v1.19.0, v1.20.0, v1.21.0, v1.21.1, v1.21.2, v1.22.0, v1.22.1, v1.22.2, v1.22.3, v1.23.0, v1.23.1, v1.23.2, v1.23.3, v1.24.0, v1.24.1, v1.24.2, v1.25.0, v1.26.0, v1.26.1, v1.27.0, v1.28.0, v1.28.1, v1.28.2, v1.29.0, v1.30.0, v1.31.0, v1.32.0, v1.33.0, v1.33.1, v1.33.2, v1.34.0, v1.34.1, v1.34.2, v1.34.3, v1.34.4] but these conflict with your requirements or minimum-stability.
- symfony/symfony v2.3.14 requires twig/twig ~1.11 -> satisfiable by twig/twig[1.x-dev, v1.11.0, v1.11.1, v1.12.0, v1.12.0-RC1, v1.12.1, v1.12.2, v1.12.3, v1.13.0, v1.13.1, v1.13.2, v1.14.0, v1.14.1, v1.14.2, v1.15.0, v1.15.1, v1.16.0, v1.16.1, v1.16.2, v1.16.3, v1.17.0, v1.18.0, v1.18.1, v1.18.2, v1.19.0, v1.20.0, v1.21.0, v1.21.1, v1.21.2, v1.22.0, v1.22.1, v1.22.2, v1.22.3, v1.23.0, v1.23.1, v1.23.2, v1.23.3, v1.24.0, v1.24.1, v1.24.2, v1.25.0, v1.26.0, v1.26.1, v1.27.0, v1.28.0, v1.28.1, v1.28.2, v1.29.0, v1.30.0, v1.31.0, v1.32.0, v1.33.0, v1.33.1, v1.33.2, v1.34.0, v1.34.1, v1.34.2, v1.34.3, v1.34.4] but these conflict with your requirements or minimum-stability.
- symfony/symfony v2.3.13 requires twig/twig ~1.11 -> satisfiable by twig/twig[1.x-dev, v1.11.0, v1.11.1, v1.12.0, v1.12.0-RC1, v1.12.1, v1.12.2, v1.12.3, v1.13.0, v1.13.1, v1.13.2, v1.14.0, v1.14.1, v1.14.2, v1.15.0, v1.15.1, v1.16.0, v1.16.1, v1.16.2, v1.16.3, v1.17.0, v1.18.0, v1.18.1, v1.18.2, v1.19.0, v1.20.0, v1.21.0, v1.21.1, v1.21.2, v1.22.0, v1.22.1, v1.22.2, v1.22.3, v1.23.0, v1.23.1, v1.23.2, v1.23.3, v1.24.0, v1.24.1, v1.24.2, v1.25.0, v1.26.0, v1.26.1, v1.27.0, v1.28.0, v1.28.1, v1.28.2, v1.29.0, v1.30.0, v1.31.0, v1.32.0, v1.33.0, v1.33.1, v1.33.2, v1.34.0, v1.34.1, v1.34.2, v1.34.3, v1.34.4] but these conflict with your requirements or minimum-stability.
- symfony/symfony v2.3.12 requires twig/twig ~1.11 -> satisfiable by twig/twig[1.x-dev, v1.11.0, v1.11.1, v1.12.0, v1.12.0-RC1, v1.12.1, v1.12.2, v1.12.3, v1.13.0, v1.13.1, v1.13.2, v1.14.0, v1.14.1, v1.14.2, v1.15.0, v1.15.1, v1.16.0, v1.16.1, v1.16.2, v1.16.3, v1.17.0, v1.18.0, v1.18.1, v1.18.2, v1.19.0, v1.20.0, v1.21.0, v1.21.1, v1.21.2, v1.22.0, v1.22.1, v1.22.2, v1.22.3, v1.23.0, v1.23.1, v1.23.2, v1.23.3, v1.24.0, v1.24.1, v1.24.2, v1.25.0, v1.26.0, v1.26.1, v1.27.0, v1.28.0, v1.28.1, v1.28.2, v1.29.0, v1.30.0, v1.31.0, v1.32.0, v1.33.0, v1.33.1, v1.33.2, v1.34.0, v1.34.1, v1.34.2, v1.34.3, v1.34.4] but these conflict with your requirements or minimum-stability.
- symfony/symfony v2.3.11 requires twig/twig ~1.11 -> satisfiable by twig/twig[1.x-dev, v1.11.0, v1.11.1, v1.12.0, v1.12.0-RC1, v1.12.1, v1.12.2, v1.12.3, v1.13.0, v1.13.1, v1.13.2, v1.14.0, v1.14.1, v1.14.2, v1.15.0, v1.15.1, v1.16.0, v1.16.1, v1.16.2, v1.16.3, v1.17.0, v1.18.0, v1.18.1, v1.18.2, v1.19.0, v1.20.0, v1.21.0, v1.21.1, v1.21.2, v1.22.0, v1.22.1, v1.22.2, v1.22.3, v1.23.0, v1.23.1, v1.23.2, v1.23.3, v1.24.0, v1.24.1, v1.24.2, v1.25.0, v1.26.0, v1.26.1, v1.27.0, v1.28.0, v1.28.1, v1.28.2, v1.29.0, v1.30.0, v1.31.0, v1.32.0, v1.33.0, v1.33.1, v1.33.2, v1.34.0, v1.34.1, v1.34.2, v1.34.3, v1.34.4] but these conflict with your requirements or minimum-stability.
- symfony/symfony v2.3.10 requires twig/twig ~1.11 -> satisfiable by twig/twig[1.x-dev, v1.11.0, v1.11.1, v1.12.0, v1.12.0-RC1, v1.12.1, v1.12.2, v1.12.3, v1.13.0, v1.13.1, v1.13.2, v1.14.0, v1.14.1, v1.14.2, v1.15.0, v1.15.1, v1.16.0, v1.16.1, v1.16.2, v1.16.3, v1.17.0, v1.18.0, v1.18.1, v1.18.2, v1.19.0, v1.20.0, v1.21.0, v1.21.1, v1.21.2, v1.22.0, v1.22.1, v1.22.2, v1.22.3, v1.23.0, v1.23.1, v1.23.2, v1.23.3, v1.24.0, v1.24.1, v1.24.2, v1.25.0, v1.26.0, v1.26.1, v1.27.0, v1.28.0, v1.28.1, v1.28.2, v1.29.0, v1.30.0, v1.31.0, v1.32.0, v1.33.0, v1.33.1, v1.33.2, v1.34.0, v1.34.1, v1.34.2, v1.34.3, v1.34.4] but these conflict with your requirements or minimum-stability.
- symfony/symfony v2.3.1 requires twig/twig ~1.11 -> satisfiable by twig/twig[1.x-dev, v1.11.0, v1.11.1, v1.12.0, v1.12.0-RC1, v1.12.1, v1.12.2, v1.12.3, v1.13.0, v1.13.1, v1.13.2, v1.14.0, v1.14.1, v1.14.2, v1.15.0, v1.15.1, v1.16.0, v1.16.1, v1.16.2, v1.16.3, v1.17.0, v1.18.0, v1.18.1, v1.18.2, v1.19.0, v1.20.0, v1.21.0, v1.21.1, v1.21.2, v1.22.0, v1.22.1, v1.22.2, v1.22.3, v1.23.0, v1.23.1, v1.23.2, v1.23.3, v1.24.0, v1.24.1, v1.24.2, v1.25.0, v1.26.0, v1.26.1, v1.27.0, v1.28.0, v1.28.1, v1.28.2, v1.29.0, v1.30.0, v1.31.0, v1.32.0, v1.33.0, v1.33.1, v1.33.2, v1.34.0, v1.34.1, v1.34.2, v1.34.3, v1.34.4] but these conflict with your requirements or minimum-stability.
- symfony/symfony v2.3.0 requires twig/twig ~1.11 -> satisfiable by twig/twig[1.x-dev, v1.11.0, v1.11.1, v1.12.0, v1.12.0-RC1, v1.12.1, v1.12.2, v1.12.3, v1.13.0, v1.13.1, v1.13.2, v1.14.0, v1.14.1, v1.14.2, v1.15.0, v1.15.1, v1.16.0, v1.16.1, v1.16.2, v1.16.3, v1.17.0, v1.18.0, v1.18.1, v1.18.2, v1.19.0, v1.20.0, v1.21.0, v1.21.1, v1.21.2, v1.22.0, v1.22.1, v1.22.2, v1.22.3, v1.23.0, v1.23.1, v1.23.2, v1.23.3, v1.24.0, v1.24.1, v1.24.2, v1.25.0, v1.26.0, v1.26.1, v1.27.0, v1.28.0, v1.28.1, v1.28.2, v1.29.0, v1.30.0, v1.31.0, v1.32.0, v1.33.0, v1.33.1, v1.33.2, v1.34.0, v1.34.1, v1.34.2, v1.34.3, v1.34.4] but these conflict with your requirements or minimum-stability.
- Installation request for symfony/symfony-demo dev-use_flex -> satisfiable by symfony/symfony-demo[dev-use_flex].
- dama/doctrine-test-bundle v3.0.0 requires symfony/symfony ~2.3|~3.0 -> satisfiable by symfony/symfony[v3.1.10, v3.1.4, v3.1.5, v3.1.6, v3.1.7, v3.1.8, v3.1.9, v3.2.0, v3.2.1, v3.2.10, v3.2.11, v3.2.12, v3.2.2, v3.2.3, v3.2.4, v3.2.5, v3.2.6, v3.2.7, v3.2.8, v3.2.9, v3.3.0, v3.3.1, v3.3.2, v3.3.3, v3.3.4, v3.3.5, v2.3.0, v2.3.1, v2.3.10, v2.3.11, v2.3.12, v2.3.13, v2.3.14, v2.3.15, v2.3.16, v2.3.17, v2.3.18, v2.3.19, v2.3.2, v2.3.20, v2.3.21, v2.3.22, v2.3.23, v2.3.24, v2.3.25, v2.3.26, v2.3.27, v2.3.28, v2.3.29, v2.3.3, v2.3.30, v2.3.31, v2.3.32, v2.3.33, v2.3.34, v2.3.35, v2.3.36, v2.3.37, v2.3.38, v2.3.39, v2.3.4, v2.3.40, v2.3.41, v2.3.42, v2.3.5, v2.3.6, v2.3.7, v2.3.8, v2.3.9, v2.4.0, v2.4.1, v2.4.10, v2.4.2, v2.4.3, v2.4.4, v2.4.5, v2.4.6, v2.4.7, v2.4.8, v2.4.9, v2.5.0, v2.5.1, v2.5.10, v2.5.11, v2.5.12, v2.5.2, v2.5.3, v2.5.4, v2.5.5, v2.5.6, v2.5.7, v2.5.8, v2.5.9, v2.6.0, v2.6.1, v2.6.10, v2.6.11, v2.6.12, v2.6.13, v2.6.2, v2.6.3, v2.6.4, v2.6.5, v2.6.6, v2.6.7, v2.6.8, v2.6.9, v2.7.0, v2.7.1, v2.7.10, v2.7.11, v2.7.12, v2.7.13, v2.7.14, v2.7.15, v2.7.16, v2.7.17, v2.7.18, v2.7.19, v2.7.2, v2.7.20, v2.7.21, v2.7.22, v2.7.23, v2.7.24, v2.7.25, v2.7.26, v2.7.27, v2.7.28, v2.7.29, v2.7.3, v2.7.30, v2.7.31, v2.7.32, v2.7.4, v2.7.5, v2.7.6, v2.7.7, v2.7.8, v2.7.9, v2.8.0, v2.8.1, v2.8.10, v2.8.11, v2.8.12, v2.8.13, v2.8.14, v2.8.15, v2.8.16, v2.8.17, v2.8.18, v2.8.19, v2.8.2, v2.8.20, v2.8.21, v2.8.22, v2.8.23, v2.8.24, v2.8.25, v2.8.3, v2.8.4, v2.8.5, v2.8.6, v2.8.7, v2.8.8, v2.8.9, v3.0.0, v3.0.1, v3.0.2, v3.0.3, v3.0.4, v3.0.5, v3.0.6, v3.0.7, v3.0.8, v3.0.9, v3.1.0, v3.1.1, v3.1.2, v3.1.3].
- symfony/symfony v2.3.32 conflicts with symfony/symfony-demo[dev-use_flex].
- symfony/symfony v2.3.33 conflicts with symfony/symfony-demo[dev-use_flex].
- symfony/symfony v2.3.34 conflicts with symfony/symfony-demo[dev-use_flex].
- symfony/symfony v2.3.35 conflicts with symfony/symfony-demo[dev-use_flex].
- symfony/symfony v2.3.36 conflicts with symfony/symfony-demo[dev-use_flex].
- symfony/symfony v2.3.37 conflicts with symfony/symfony-demo[dev-use_flex].
- symfony/symfony v2.3.38 conflicts with symfony/symfony-demo[dev-use_flex].
- symfony/symfony v2.3.39 conflicts with symfony/symfony-demo[dev-use_flex].
- symfony/symfony v2.3.40 conflicts with symfony/symfony-demo[dev-use_flex].
- symfony/symfony v2.3.41 conflicts with symfony/symfony-demo[dev-use_flex].
- symfony/symfony v2.3.42 conflicts with symfony/symfony-demo[dev-use_flex].
- symfony/symfony v2.7.10 conflicts with symfony/symfony-demo[dev-use_flex].
- symfony/symfony v2.7.11 conflicts with symfony/symfony-demo[dev-use_flex].
- symfony/symfony v2.7.12 conflicts with symfony/symfony-demo[dev-use_flex].
- symfony/symfony v2.7.13 conflicts with symfony/symfony-demo[dev-use_flex].
- symfony/symfony v2.7.14 conflicts with symfony/symfony-demo[dev-use_flex].
- symfony/symfony v2.7.15 conflicts with symfony/symfony-demo[dev-use_flex].
- symfony/symfony v2.7.16 conflicts with symfony/symfony-demo[dev-use_flex].
- symfony/symfony v2.7.17 conflicts with symfony/symfony-demo[dev-use_flex].
- symfony/symfony v2.7.18 conflicts with symfony/symfony-demo[dev-use_flex].
- symfony/symfony v2.7.19 conflicts with symfony/symfony-demo[dev-use_flex].
- symfony/symfony v2.7.20 conflicts with symfony/symfony-demo[dev-use_flex].
- symfony/symfony v2.7.21 conflicts with symfony/symfony-demo[dev-use_flex].
- symfony/symfony v2.7.22 conflicts with symfony/symfony-demo[dev-use_flex].
- symfony/symfony v2.7.23 conflicts with symfony/symfony-demo[dev-use_flex].
- symfony/symfony v2.7.24 conflicts with symfony/symfony-demo[dev-use_flex].
- symfony/symfony v2.7.25 conflicts with symfony/symfony-demo[dev-use_flex].
- symfony/symfony v2.7.26 conflicts with symfony/symfony-demo[dev-use_flex].
- symfony/symfony v2.7.27 conflicts with symfony/symfony-demo[dev-use_flex].
- symfony/symfony v2.7.28 conflicts with symfony/symfony-demo[dev-use_flex].
- symfony/symfony v2.7.29 conflicts with symfony/symfony-demo[dev-use_flex].
- symfony/symfony v2.7.30 conflicts with symfony/symfony-demo[dev-use_flex].
- symfony/symfony v2.7.31 conflicts with symfony/symfony-demo[dev-use_flex].
- symfony/symfony v2.7.32 conflicts with symfony/symfony-demo[dev-use_flex].
- symfony/symfony v2.7.4 conflicts with symfony/symfony-demo[dev-use_flex].
- symfony/symfony v2.7.5 conflicts with symfony/symfony-demo[dev-use_flex].
- symfony/symfony v2.7.6 conflicts with symfony/symfony-demo[dev-use_flex].
- symfony/symfony v2.7.7 conflicts with symfony/symfony-demo[dev-use_flex].
- symfony/symfony v2.7.8 conflicts with symfony/symfony-demo[dev-use_flex].
- symfony/symfony v2.7.9 conflicts with symfony/symfony-demo[dev-use_flex].
- symfony/symfony v2.8.0 conflicts with symfony/symfony-demo[dev-use_flex].
- symfony/symfony v2.8.1 conflicts with symfony/symfony-demo[dev-use_flex].
- symfony/symfony v2.8.10 conflicts with symfony/symfony-demo[dev-use_flex].
- symfony/symfony v2.8.11 conflicts with symfony/symfony-demo[dev-use_flex].
- symfony/symfony v2.8.12 conflicts with symfony/symfony-demo[dev-use_flex].
- symfony/symfony v2.8.13 conflicts with symfony/symfony-demo[dev-use_flex].
- symfony/symfony v2.8.14 conflicts with symfony/symfony-demo[dev-use_flex].
- symfony/symfony v2.8.15 conflicts with symfony/symfony-demo[dev-use_flex].
- symfony/symfony v2.8.16 conflicts with symfony/symfony-demo[dev-use_flex].
- symfony/symfony v2.8.17 conflicts with symfony/symfony-demo[dev-use_flex].
- symfony/symfony v2.8.18 conflicts with symfony/symfony-demo[dev-use_flex].
- symfony/symfony v2.8.19 conflicts with symfony/symfony-demo[dev-use_flex].
- symfony/symfony v2.8.2 conflicts with symfony/symfony-demo[dev-use_flex].
- symfony/symfony v2.8.20 conflicts with symfony/symfony-demo[dev-use_flex].
- symfony/symfony v2.8.21 conflicts with symfony/symfony-demo[dev-use_flex].
- symfony/symfony v2.8.22 conflicts with symfony/symfony-demo[dev-use_flex].
- symfony/symfony v2.8.23 conflicts with symfony/symfony-demo[dev-use_flex].
- symfony/symfony v2.8.24 conflicts with symfony/symfony-demo[dev-use_flex].
- symfony/symfony v2.8.25 conflicts with symfony/symfony-demo[dev-use_flex].
- symfony/symfony v2.8.3 conflicts with symfony/symfony-demo[dev-use_flex].
- symfony/symfony v2.8.4 conflicts with symfony/symfony-demo[dev-use_flex].
- symfony/symfony v2.8.5 conflicts with symfony/symfony-demo[dev-use_flex].
- symfony/symfony v2.8.6 conflicts with symfony/symfony-demo[dev-use_flex].
- symfony/symfony v2.8.7 conflicts with symfony/symfony-demo[dev-use_flex].
- symfony/symfony v2.8.8 conflicts with symfony/symfony-demo[dev-use_flex].
- symfony/symfony v2.8.9 conflicts with symfony/symfony-demo[dev-use_flex].
- symfony/symfony v3.0.0 conflicts with symfony/symfony-demo[dev-use_flex].
- symfony/symfony v3.0.1 conflicts with symfony/symfony-demo[dev-use_flex].
- symfony/symfony v3.0.2 conflicts with symfony/symfony-demo[dev-use_flex].
- symfony/symfony v3.0.3 conflicts with symfony/symfony-demo[dev-use_flex].
- symfony/symfony v3.0.4 conflicts with symfony/symfony-demo[dev-use_flex].
- symfony/symfony v3.0.5 conflicts with symfony/symfony-demo[dev-use_flex].
- symfony/symfony v3.0.6 conflicts with symfony/symfony-demo[dev-use_flex].
- symfony/symfony v3.0.7 conflicts with symfony/symfony-demo[dev-use_flex].
- symfony/symfony v3.0.8 conflicts with symfony/symfony-demo[dev-use_flex].
- symfony/symfony v3.0.9 conflicts with symfony/symfony-demo[dev-use_flex].
- symfony/symfony v3.1.0 conflicts with symfony/symfony-demo[dev-use_flex].
- symfony/symfony v3.1.1 conflicts with symfony/symfony-demo[dev-use_flex].
- symfony/symfony v3.1.10 conflicts with symfony/symfony-demo[dev-use_flex].
- symfony/symfony v3.1.2 conflicts with symfony/symfony-demo[dev-use_flex].
- symfony/symfony v3.1.3 conflicts with symfony/symfony-demo[dev-use_flex].
- symfony/symfony v3.1.4 conflicts with symfony/symfony-demo[dev-use_flex].
- symfony/symfony v3.1.5 conflicts with symfony/symfony-demo[dev-use_flex].
- symfony/symfony v3.1.6 conflicts with symfony/symfony-demo[dev-use_flex].
- symfony/symfony v3.1.7 conflicts with symfony/symfony-demo[dev-use_flex].
- symfony/symfony v3.1.8 conflicts with symfony/symfony-demo[dev-use_flex].
- symfony/symfony v3.1.9 conflicts with symfony/symfony-demo[dev-use_flex].
- symfony/symfony v3.2.0 conflicts with symfony/symfony-demo[dev-use_flex].
- symfony/symfony v3.2.1 conflicts with symfony/symfony-demo[dev-use_flex].
- symfony/symfony v3.2.10 conflicts with symfony/symfony-demo[dev-use_flex].
- symfony/symfony v3.2.11 conflicts with symfony/symfony-demo[dev-use_flex].
- symfony/symfony v3.2.12 conflicts with symfony/symfony-demo[dev-use_flex].
- symfony/symfony v3.2.2 conflicts with symfony/symfony-demo[dev-use_flex].
- symfony/symfony v3.2.3 conflicts with symfony/symfony-demo[dev-use_flex].
- symfony/symfony v3.2.4 conflicts with symfony/symfony-demo[dev-use_flex].
- symfony/symfony v3.2.5 conflicts with symfony/symfony-demo[dev-use_flex].
- symfony/symfony v3.2.6 conflicts with symfony/symfony-demo[dev-use_flex].
- symfony/symfony v3.2.7 conflicts with symfony/symfony-demo[dev-use_flex].
- symfony/symfony v3.2.8 conflicts with symfony/symfony-demo[dev-use_flex].
- symfony/symfony v3.2.9 conflicts with symfony/symfony-demo[dev-use_flex].
- symfony/symfony v3.3.0 conflicts with symfony/symfony-demo[dev-use_flex].
- symfony/symfony v3.3.1 conflicts with symfony/symfony-demo[dev-use_flex].
- symfony/symfony v3.3.2 conflicts with symfony/symfony-demo[dev-use_flex].
- symfony/symfony v3.3.3 conflicts with symfony/symfony-demo[dev-use_flex].
- symfony/symfony v3.3.4 conflicts with symfony/symfony-demo[dev-use_flex].
- symfony/symfony v3.3.5 conflicts with symfony/symfony-demo[dev-use_flex].
- Installation request for dama/doctrine-test-bundle ^3.0 -> satisfiable by dama/doctrine-test-bundle[v3.0.0].

Installation failed, reverting ./composer.json to its original content.

@dmaicher
Copy link
Contributor

@javiereguiluz fixed with the latest 3.1 release:

$  composer require --dev dama/doctrine-test-bundle
Using version ^3.1 for dama/doctrine-test-bundle
./composer.json has been updated
Loading composer repositories with package information
Updating dependencies (including require-dev)
Package operations: 82 installs, 0 updates, 0 removals
...

@javiereguiluz
Copy link
Member Author

@dmaicher thanks! Now I can install it and I've added back the listener in PHPUnit config ... but it doesn't seem to be working. The first test is OK, but the second one is not, so the database is not restored:

$ ./vendor/bin/simple-phpunit --stop-on-failure

PHPUnit 5.7.21 by Sebastian Bergmann and contributors.

Testing Project Test Suite
.E

Time: 1.5 seconds, Memory: 14.00MB

There was 1 error:

1) App\Tests\Command\AddUserCommandTest::testCreateUserNonInteractive with data set #1 (true)
RuntimeException: There is already a user registered with the "chuck_norris" username.

@dmaicher
Copy link
Contributor

@javiereguiluz and is the bundle is also loaded like it was done before here?

https://github.com/symfony/symfony-demo/pull/617/files#diff-c23da96dc8986a4cee89980f3aad30e0L54

@javiereguiluz
Copy link
Member Author

@dmaicher I'm an idiot! Added the bundle as 'DAMA\DoctrineTestBundle\DAMADoctrineTestBundle' => ['test' => true], and it's working again. Thanks and I'm sorry 😊

@ryota-murakami
Copy link

Typical mistakes of every symfony user lol

@javiereguiluz
Copy link
Member Author

Tests are failing on Travis:

PHP Fatal error:  Uncaught Symfony\Component\Dotenv\Exception\PathException:
Unable to read the "/home/travis/build/symfony/symfony-demo/bin/../.env" environment file.
in /home/travis/build/symfony/symfony-demo/vendor/symfony/dotenv/Dotenv.php:53

Stack trace:
  #0 /home/travis/build/symfony/symfony-demo/bin/console(20): 
     Symfony\Component\Dotenv\Dotenv->load('/home/travis/bu...')
  #1 {main}
  thrown in /home/travis/build/symfony/symfony-demo/vendor/symfony/dotenv/Dotenv.php on line 53

@dmaicher
Copy link
Contributor

@javiereguiluz weird fail 😢 Maybe try to add ls -la or similar to see if the .env is actually there? But why would it disappear? 😄

@dmaicher
Copy link
Contributor

Actually I don't see the command cp .env.dist .env in the output here? 😕

https://travis-ci.org/symfony/symfony-demo/builds/259279082

composer.json Outdated
"symfony/swiftmailer-bundle": "^3.0",
"symfony/translation": "^3.3",
"symfony/validator": "^3.3",
"symfony/var-dumper": "^3.3",
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why not put var-dumper to dev requirements?

composer.json Outdated
"App\\Tests\\": "tests/"
},
"files": [
"vendor/symfony/var-dumper/Resources/functions/dump.php"
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I guess this file can be removed here, because var-dumper is now required directly.

# into clickable links that open the given file using your favorite IDE.
# When 'ide' is set to null the file is opened in your web browser.
# See https://symfony.com/doc/current/reference/configuration/framework.html#ide
ide: ~
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This file uses null and ~. Imo we should only use one of them.

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@javiereguiluz
Copy link
Member Author

I need help. Travis is failing with this error:

$ ./bin/console security:check --end-point=http://security.sensiolabs.org/check_lock
                                                                  
  [Symfony\Component\Console\Exception\CommandNotFoundException]  
  Command "security:check" is not defined.                        
  Did you mean this?                                              
      security:encode-password      

But the sec-checker dependency was installed and the security:check command EXISTS.

# To load users from somewhere else: https://symfony.com/doc/current/security/custom_provider.html
database_users:
entity: { class: AppBundle:User, property: username }
entity: { class: App:User, property: username }
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

maybe we should use App\Entity\User there?

@gharlan
Copy link
gharlan commented Aug 3, 2017

@javiereguiluz this file of the sec-checker recipe is missing: https://github.com/symfony/recipes/blob/master/sensiolabs/security-checker/4.0/config/packages/dev/security_checker.yaml#L5
So the command does not exist. You have to commit that file.

@javiereguiluz
Copy link
Member Author

🤦‍♂️ @gharlan that was it! Thank you.

@javiereguiluz
Copy link
Member Author

... and a million changes later, the Symfony Demo is upgraded to Symfony Flex and tests are green 🎉 🎉 🎉 Thank you all for your help!


Now, please tell me more things to improve before merge. Thanks!

.php_cs.dist Outdated
@@ -11,12 +11,12 @@ COMMENT;

$finder = PhpCsFixer\Finder::create()
->in(__DIR__)
->exclude('config')
->exclude('var')
->exclude('web/bundles')
->exclude('web/css')
->exclude('web/fonts')
->exclude('web/js')
93C6 Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

web -> public

composer.json Outdated
"file": "app/config/parameters.yml"
"symfony": {
"id": "01BP22MQ00QH5WD6NN6HHD3EX4",
"allow-contrib": false
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Maybe set allow-contrib to true?
So if people use the demo and try to add a package/bundle which is available in contrib recipes, it will work just fine?
Just an idea, I'm not sure.

# classes (e.g. container parameters) so you must define those arguments explicitly
AppBundle\Command\ListUsersCommand:
App\Command\ListUsersCommand:
arguments:
$emailSender: '%app.notifications.email_sender%'
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

you can remove arguments: here

->exclude('public/bundles')
->exclude('public/css')
->exclude('public/fonts')
->exclude('public/js')
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

public/css, public/fonts and public/js => public/build

@DougHayward
Copy link
DougHayward commented Aug 8, 2017

I could be wrong but I think the fixtures might need looking at. Have just cloned your fork and when attempting to load the fixtures I get the following:

  [InvalidArgumentException]                                                              
  Could not find any fixtures to load in:                                                 
  - /var/www/html/symfony-demo/vendor/symfony/framework-bundle/DataFixtures/ORM           
  - /var/www/html/symfony-demo/vendor/symfony/security-bundle/DataFixtures/ORM            
  - /var/www/html/symfony-demo/vendor/doctrine/doctrine-cache-bundle/DataFixtures/ORM     
  - /var/www/html/symfony-demo/vendor/doctrine/doctrine-bundle/DataFixtures/ORM           
  - /var/www/html/symfony-demo/vendor/doctrine/doctrine-fixtures-bundle/DataFixtures/ORM  
  - /var/www/html/symfony-demo/vendor/sensio/framework-extra-bundle/DataFixtures/ORM      
  - /var/www/html/symfony-demo/vendor/symfony/monolog-bundle/DataFixtures/ORM             
  - /var/www/html/symfony-demo/vendor/symfony/swiftmailer-bundle/DataFixtures/ORM         
  - /var/www/html/symfony-demo/vendor/symfony/twig-bundle/DataFixtures/ORM                
  - /var/www/html/symfony-demo/vendor/white-october/pagerfanta-bundle/DataFixtures/ORM    
  - /var/www/html/symfony-demo/vendor/symfony/debug-bundle/DataFixtures/ORM               
  - /var/www/html/symfony-demo/vendor/symfony/web-server-bundle/DataFixtures/ORM          
  - /var/www/html/symfony-demo/vendor/symfony/web-profiler-bundle/DataFixtures/ORM     

Think its due to the lack of a Bundle.


Edit:

I've just now, noticed your comment ( @javiereguiluz ) on their PR to fix this. - doctrine/DoctrineFixturesBundle#192

I can confirm the fix provided in that PR does solve the issue.

composer.json Outdated
"symfony/polyfill-apcu": "^1.4",
"symfony/security-bundle": "^3.3",
"symfony/swiftmailer-bundle": "^3.0",
"symfony/templating": "^3.3",
Copy link

Choose a reason for hiding this commen 10000 t

The reason will be displayed to describe this comment to others. Learn more.

you can remove the templating component (revert e8d0b8a), since the error is fixed in 3.3.7.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Update this application to use Symfony Flex
10 participants
0