aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--composer.json7
-rw-r--r--tests/Wallabag/CoreBundle/Command/InstallCommandTest.php1
2 files changed, 7 insertions, 1 deletions
diff --git a/composer.json b/composer.json
index 4f609567..405b1188 100644
--- a/composer.json
+++ b/composer.json
@@ -73,7 +73,7 @@
73 "kphoen/rulerz-bundle": "~0.13", 73 "kphoen/rulerz-bundle": "~0.13",
74 "guzzlehttp/guzzle": "^5.3.1", 74 "guzzlehttp/guzzle": "^5.3.1",
75 "doctrine/doctrine-migrations-bundle": "^1.3", 75 "doctrine/doctrine-migrations-bundle": "^1.3",
76 "craue/config-bundle": "~2.0", 76 "craue/config-bundle": "dev-utf8mb4",
77 "mnapoli/piwik-twig-extension": "^1.0", 77 "mnapoli/piwik-twig-extension": "^1.0",
78 "ocramius/proxy-manager": "^1.0.2", 78 "ocramius/proxy-manager": "^1.0.2",
79 "white-october/pagerfanta-bundle": "^1.1", 79 "white-october/pagerfanta-bundle": "^1.1",
@@ -148,6 +148,11 @@
148 "type": "vcs", 148 "type": "vcs",
149 "url": "https://github.com/Daniel-KM/PHPePub", 149 "url": "https://github.com/Daniel-KM/PHPePub",
150 "comment": "The most up-to-date PHPePub as of now" 150 "comment": "The most up-to-date PHPePub as of now"
151 },
152 {
153 "type": "vcs",
154 "url": "https://github.com/wallabag/CraueConfigBundle",
155 "comment": "To handle utf8mb4 field size"
151 } 156 }
152 ] 157 ]
153} 158}
diff --git a/tests/Wallabag/CoreBundle/Command/InstallCommandTest.php b/tests/Wallabag/CoreBundle/Command/InstallCommandTest.php
index bd351b18..08685408 100644
--- a/tests/Wallabag/CoreBundle/Command/InstallCommandTest.php
+++ b/tests/Wallabag/CoreBundle/Command/InstallCommandTest.php
@@ -62,6 +62,7 @@ class InstallCommandTest extends WallabagCoreTestCase
62 $databasePath = getenv('TEST_DATABASE_PATH'); 62 $databasePath = getenv('TEST_DATABASE_PATH');
63 // Remove variable environnement 63 // Remove variable environnement
64 putenv('TEST_DATABASE_PATH'); 64 putenv('TEST_DATABASE_PATH');
65
65 if ($databasePath && file_exists($databasePath)) { 66 if ($databasePath && file_exists($databasePath)) {
66 unlink($databasePath); 67 unlink($databasePath);
67 } else { 68 } else {