Skip to content

Commit ae024f5

Browse files
committed
Fix PHP dependencies
1 parent 6a60c78 commit ae024f5

File tree

2 files changed

+10
-9
lines changed

2 files changed

+10
-9
lines changed

.travis.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,25 +7,25 @@ cache:
77
- $HOME/.composer/cache
88

99
php:
10-
- 7.1
1110
- 7.2
1211
- 7.3
12+
- 7.4
1313

1414
services:
1515
- mongodb
1616

1717
matrix:
1818
fast_finish: true
1919
include:
20-
- php: 7.1
21-
env: SYMFONY_VERSION=^3.4
22-
- php: 7.1
23-
env: COMPOSER_FLAGS="--prefer-lowest"
2420
- php: 7.2
25-
env: SYMFONY_VERSION=^3.4
26-
- php: 7.3
27-
env: SYMFONY_VERSION=^4.1
21+
env: SYMFONY_VERSION=^4.2
22+
- php: 7.2
23+
env: COMPOSER_FLAGS="--prefer-lowest"
2824
- php: 7.3
25+
env: SYMFONY_VERSION=^4.4
26+
- php: 7.4
27+
env: SYMFONY_VERSION=^5.0
28+
- php: 7.4
2929
env: DEPENDENCIES=dev
3030
- php: nightly
3131
env: COMPOSER_FLAGS="--ignore-platform-reqs"

tests/phpunit-bootstrap.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@
2727
$kernel = new AppKernel('test', false);
2828
$output = new ConsoleOutput();
2929
$application = new Application($kernel);
30-
$application->get('doctrine:schema:update')->run(new StringInput('--force'), $output);
30+
$application->get('doctrine:schema:drop')->run(new StringInput('--force --quiet'), $output);
31+
$application->get('doctrine:schema:create')->run(new StringInput('--quiet'), $output);
3132

3233
// Fill some basic fixtures
3334
$em = $kernel->getContainer()->get('doctrine')->getManager();

0 commit comments

Comments
 (0)