Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers 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

Mise en place de tests fonctionnels avec Behat #149

Closed
wants to merge 16 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Mod: Composer update
  • Loading branch information
mikaelrandy committed Oct 7, 2015
commit c65e82424e97ad00939a0ed785d7dc48b4b50362
1 change: 0 additions & 1 deletion app/bootstrap.php
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,6 @@

// Add Twig extensions
$app['twig'] = $app->share($app->extend('twig', function($twig, $app) {
$twig->addExtension(new Twig_Extensions_Extension_Debug());
$twig->addExtension(new Twig_Extensions_Extension_Text());
$twig->addGlobal('ga_enabled', $app['ga.enabled']);
$twig->addGlobal('ga_ua', $app['ga.ua']);
Expand Down
15 changes: 10 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
"minimum-stability" : "dev",
"require": {
"silex/silex" : "1.0.*",
"doctrine/common" : "2.4.*",
"doctrine/dbal" : "2.4.*",
"twig/twig" : "1.12.*",
"twig/extensions" : "dev-master",
"doctrine/common" : "~2.4",
"doctrine/dbal" : "~2.4",
"twig/twig" : "~1.12",
"twig/extensions" : "~1.3",
"symfony/class-loader" : "2.1.x",
"symfony/form" : "2.1.x",
"symfony/validator" : "2.1.x",
Expand All @@ -27,7 +27,12 @@
"tijsverkoyen/akismet" : "1.1.0"
},
"require-dev": {
"atoum/atoum" : "dev-master"
"atoum/atoum" : "~2.2",
"behat/behat" : "~2.4",
"behat/mink-extension" : "~1.0",
"behat/mink-goutte-driver" : "~1.0",
"sensiolabs/behat-page-object-extension" : "~1.0",
"bossa/phpspec2-expect" : "dev-master"
},
"autoload": {
"psr-0": {
Expand Down
Loading