Skip to content

Commit 3bf4009

Browse files
committed
allow phpunit 6
1 parent f54f24c commit 3bf4009

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
"doctrine/phpcr-odm": "^1.4",
2929
"jackalope/jackalope-doctrine-dbal": "^1.2",
3030
"jms/serializer-bundle": "^2.2",
31-
"phpunit/phpunit": "^5.7.11",
31+
"phpunit/phpunit": "^5.7.11|^6.5",
3232
"propel/propel1": "^1.7",
3333
"knplabs/knp-components": "^1.2",
3434
"symfony/expression-language" : "^3.2|^4",

phpunit.xml.dist

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22

3-
<phpunit bootstrap="./vendor/autoload.php" colors="true">
3+
<phpunit
4+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
5+
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/6.5/phpunit.xsd"
6+
colors = "true"
7+
beStrictAboutOutputDuringTests = "true"
8+
convertDeprecationsToExceptions = "false"
9+
verbose = "true"
10+
bootstrap = "vendor/autoload.php"
11+
>
412
<php>
513
<server name="FOS_ELASTICA_HOST" value="localhost" />
614
<server name="FOS_ELASTICA_PORT" value="9200" />

0 commit comments

Comments
 (0)