Skip to content

Commit

Permalink
Re-add bootstrap to fix PHP5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
atimmer committed Mar 7, 2017
1 parent 056ff68 commit b3a1dca
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion phpunit.xml
@@ -1,4 +1,4 @@
<phpunit>
<phpunit bootstrap="tests/bootstrap.php">
<testsuites>
<testsuite>
<directory suffix="Test.php">./tests/</directory>
Expand Down
5 changes: 5 additions & 0 deletions tests/bootstrap.php
@@ -0,0 +1,5 @@
<?php

if ( file_exists( dirname( __FILE__ ) . '/../vendor/autoload_52.php' ) ) {
require_once dirname( __FILE__ ) . '/../vendor/autoload_52.php';
}

0 comments on commit b3a1dca

Please sign in to comment.