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 41f3503 commit 73f04bdCopy full SHA for 73f04bd
.travis.yml
@@ -12,6 +12,8 @@ matrix:
12
- php: '7.0'
13
- php: '7.1'
14
- php: '7.2'
15
+ - php: '7.3'
16
+ - php: '7.4'
17
18
cache:
19
directories:
tests/bootstrap.php
@@ -16,6 +16,9 @@
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
*/
+// Ignore deprecation warnings that occur in PHPUnit 6 on PHP 7.4
20
+error_reporting(E_ALL & ~E_DEPRECATED);
21
+
22
define('TESTS_PATH', __DIR__);
23
define('TESTS_TEMP_DIR', __DIR__.'/temp');
24
define('VENDOR_PATH', realpath(__DIR__.'/../vendor'));
0 commit comments