We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 373f05c commit e811e1eCopy full SHA for e811e1e
2 files changed
.travis.yml
@@ -0,0 +1,10 @@
1
+language: php
2
+
3
+php:
4
+ - 5.3
5
+ - 5.3.3
6
+ - 5.4
7
8
+before_script: composer install
9
10
+script: phpunit -c tests
tests/bootstrap.php
@@ -11,12 +11,12 @@
11
error_reporting(-1);
12
date_default_timezone_set('Europe/Berlin');
13
14
-if (file_exists('../vendor/autoload.php'))
+if (file_exists(__DIR__ . '/../vendor/autoload.php'))
15
{
16
- require_once '../vendor/autoload.php';
+ require_once __DIR__ . '/../vendor/autoload.php';
17
}
18
else
19
20
- require_once '../../../autoload.php';
+ require_once __DIR__ . '/../../../autoload.php';
21
22
0 commit comments