From 8eccbea522b8a73c1d90107ebd40e45accc02572 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julien=20Fastr=C3=A9?= Date: Thu, 8 Oct 2015 15:41:23 +0200 Subject: [PATCH] fix address for storing doctrineMigrationsFile into correct directory for tests --- .gitignore | 1 + composer.json | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index bd3f24341..4b827b7fb 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,6 @@ /vendor/ composer.lock Tests/Fixtures/App/app/DoctrineMigrations/* +Test/Fixtures/App/app/DoctrineMigrations/* Test/Fixtures/App/app/cache/* Test/Fixtures/App/app/config/parameters.yml diff --git a/composer.json b/composer.json index e0cdd2e3a..5c82b5f1a 100644 --- a/composer.json +++ b/composer.json @@ -47,6 +47,6 @@ ] }, "extra": { - "app-migrations-dir": "Tests/Fixtures/App/app/DoctrineMigrations" + "app-migrations-dir": "Test/Fixtures/App/app/DoctrineMigrations" } }