We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e552610 commit 57cdb04Copy full SHA for 57cdb04
.travis.yml
@@ -3,8 +3,7 @@ php:
3
- '5.6'
4
- '7.0'
5
before_script:
6
-- flags="--prefer-dist"
7
-- composer install $flags
+- composer -n --prefer-source install --dev
8
- if [[ ${TRAVIS_PHP_VERSION:0:3} == "5.6" ]]; then wget https://phar.phpunit.de/phpunit-5.7.phar; fi
9
- if [[ ${TRAVIS_PHP_VERSION:0:3} == "5.6" ]]; then mv phpunit-5.7.phar phpunit; fi
10
- if [[ ${TRAVIS_PHP_VERSION:0:3} == "5.6" ]]; then chmod +x phpunit; fi
tests/test.bootstrap.inc.php
@@ -23,7 +23,7 @@
23
24
// Load and setup class file autloader
25
//require_once 'PHPDraft/Core/Autoloader.php';
26
-require_once '../vendor/autoload.php';
+require_once $base . '/vendor/autoload.php';
27
28
if (defined('TEST_STATICS') === FALSE)
29
{
0 commit comments