File tree 4 files changed +13
-33
lines changed
4 files changed +13
-33
lines changed Original file line number Diff line number Diff line change 8
8
strategy :
9
9
fail-fast : true
10
10
matrix :
11
- php : [8.2, 8.1]
12
- laravel : [10.*, 9.* ]
11
+ php : [8.3, 8. 2, 8.1]
12
+ laravel : [10.*]
13
13
db : [mysql, postgres, sqlite]
14
14
dependency-version : [prefer-lowest, prefer-stable]
15
15
include :
16
16
- laravel : 10.*
17
17
testbench : 8.*
18
- - laravel : 9.*
19
- testbench : 7.*
20
18
21
19
name : P${{ matrix.php }} - L${{ matrix.laravel }} - DB ${{ matrix.db }} - ${{ matrix.dependency-version }}
22
20
Original file line number Diff line number Diff line change @@ -12,8 +12,8 @@ Stop duplicating your Eloquent query scopes and constraints in PHP. This package
12
12
13
13
## Requirements
14
14
15
- * PHP 8.0 +
16
- * Laravel 9 .0
15
+ * PHP 8.1 +
16
+ * Laravel 10 .0
17
17
18
18
This package is tested with GitHub Actions using MySQL 8.0, PostgreSQL 10.8 and SQLite.
19
19
Original file line number Diff line number Diff line change 16
16
}
17
17
],
18
18
"require" : {
19
- "php" : " ^8.1|^8.2" ,
20
- "illuminate/support" : " ^9.0|^10.0" ,
21
- "nesbot/carbon" : " ^2.66"
19
+ "php" : " ^8.1|^8.2|^8.3" ,
20
+ "illuminate/support" : " ^10.0"
22
21
},
23
22
"require-dev" : {
24
23
"mockery/mockery" : " ^1.4.4" ,
25
- "orchestra/testbench" : " ^7.0|^ 8.0" ,
26
- "phpunit/phpunit" : " ^9.5 "
24
+ "orchestra/testbench" : " ^8.0" ,
25
+ "phpunit/phpunit" : " ^10.4 "
27
26
},
28
27
"autoload" : {
29
28
"psr-4" : {
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" UTF-8" ?>
2
2
<phpunit bootstrap =" vendor/autoload.php"
3
- backupGlobals =" false"
4
- backupStaticAttributes =" false"
5
- colors =" true"
6
- verbose =" true"
7
- convertErrorsToExceptions =" true"
8
- convertNoticesToExceptions =" true"
9
- convertWarningsToExceptions =" true"
10
- processIsolation =" false"
11
- stopOnFailure =" false" >
3
+ backupGlobals =" false"
4
+ colors =" true"
5
+ processIsolation =" false"
6
+ stopOnFailure =" false" >
12
7
<testsuites >
13
8
<testsuite name =" Test Suite" >
14
9
<directory >tests</directory >
15
10
</testsuite >
16
11
</testsuites >
17
- <filter >
18
- <whitelist >
19
- <directory suffix =" .php" >src/</directory >
20
- </whitelist >
21
- </filter >
22
- <logging >
23
- <log type =" tap" target =" build/report.tap" />
24
- <log type =" junit" target =" build/report.junit.xml" />
25
- <log type =" coverage-html" target =" build/coverage" charset =" UTF-8" yui =" true" highlight =" true" />
26
- <log type =" coverage-text" target =" build/coverage.txt" />
27
- <log type =" coverage-clover" target =" build/logs/clover.xml" />
28
- </logging >
29
- </phpunit >
12
+ </phpunit >
You can’t perform that action at this time.
0 commit comments