This repository was archived by the owner on Jun 10, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +25
-3
lines changed Expand file tree Collapse file tree 1 file changed +25
-3
lines changed Original file line number Diff line number Diff line change @@ -3,9 +3,31 @@ language: php
3
3
php :
4
4
- 7.3
5
5
- 7.4
6
+ - 8.0
7
+ - 8.1
6
8
7
- before_script :
8
- - travis_retry composer self-update
9
- - travis_retry composer install --prefer-source --no-interaction
9
+ env :
10
+ - ILLUMINATE_VERSION=^7.0 TESTBENCH_VERSION=5.*
11
+ - ILLUMINATE_VERSION=^8.0 TESTBENCH_VERSION=6.*
12
+ - ILLUMINATE_VERSION=^9.0 TESTBENCH_VERSION=^7.0
13
+
14
+ matrix :
15
+ exclude :
16
+ # Don't test Laravel 9 on PHP 7.3 or PHP 7.4, as the mininmum
17
+ # required PHP version for this Laravel version is 8.0.2
18
+ - php : 7.3
19
+ env : ILLUMINATE_VERSION=^9.0 TESTBENCH_VERSION=^7.0
20
+ - php : 7.4
21
+ env : ILLUMINATE_VERSION=^9.0 TESTBENCH_VERSION=^7.0
22
+
23
+ before_install :
24
+ - composer require "illuminate/routing:${ILLUMINATE_VERSION}" --no-update --prefer-dist
25
+ - composer require "illuminate/support:${ILLUMINATE_VERSION}" --no-update --prefer-dist
26
+ - composer require "orchestra/testbench:${TESTBENCH_VERSION/5\./3\.}" --no-update --prefer-dist
27
+
28
+ install : travis_retry composer install --prefer-source --no-interaction
29
+
30
+ script :
31
+ - composer test
10
32
11
33
fast_finish : true
You can’t perform that action at this time.
0 commit comments