File tree Expand file tree Collapse file tree 4 files changed +39
-25
lines changed Expand file tree Collapse file tree 4 files changed +39
-25
lines changed Original file line number Diff line number Diff line change 14
14
strategy :
15
15
fail-fast : true
16
16
matrix :
17
- php : [8.1, 8.2]
18
- testing : [4.1, 5]
17
+ php : [8.2, 8.3]
19
18
20
19
steps :
21
20
- name : Checkout Code
30
29
coverage : none
31
30
ini-values : error_reporting=E_ALL
32
31
33
- - name : Set Testing Version
34
- run : composer require "cloudcreativity/json-api-testing:^${{ matrix.testing }}" --no-update
35
-
36
32
- name : Install dependencies
37
33
uses : nick-fields/retry@v2
38
34
with :
Original file line number Diff line number Diff line change 3
3
All notable changes to this project will be documented in this file. This project adheres to
4
4
[ Semantic Versioning] ( http://semver.org/ ) and [ this changelog format] ( http://keepachangelog.com/ ) .
5
5
6
+ ## Unreleased (Laravel 11)
7
+
8
+ ### Changed
9
+
10
+ - ** BREAKING** Package now requires Laravel 11.
11
+ - ** BREAKING** Package now requires ` cloudcreativity/json-api-testing ` version 6.
12
+ - Minimum PHP version is now ` 8.2 ` .
13
+
6
14
## [ 2.1.0] - 2023-02-18
7
15
8
16
### Added
Original file line number Diff line number Diff line change 23
23
}
24
24
],
25
25
"require" : {
26
- "php" : " ^8.1 " ,
26
+ "php" : " ^8.2 " ,
27
27
"ext-json" : " *" ,
28
- "cloudcreativity/json-api-testing" : " ^4.1|^5 .0" ,
29
- "illuminate/http" : " ^10 .0" ,
30
- "illuminate/support" : " ^10 .0" ,
31
- "illuminate/testing" : " ^10 .0"
28
+ "cloudcreativity/json-api-testing" : " ^6 .0" ,
29
+ "illuminate/http" : " ^11 .0" ,
30
+ "illuminate/support" : " ^11 .0" ,
31
+ "illuminate/testing" : " ^11 .0"
32
32
},
33
33
"require-dev" : {
34
- "laravel/framework" : " ^10 .0" ,
35
- "phpunit/phpunit" : " ^9.5.28|^ 10.0.7 "
34
+ "laravel/framework" : " ^11 .0" ,
35
+ "phpunit/phpunit" : " ^10.5 "
36
36
},
37
37
"autoload" : {
38
38
"psr-4" : {
46
46
},
47
47
"extra" : {
48
48
"branch-alias" : {
49
- "dev-develop" : " 2 .x-dev"
49
+ "dev-develop" : " 3 .x-dev"
50
50
}
51
51
},
52
52
"minimum-stability" : " stable" ,
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" UTF-8" ?>
2
- <phpunit xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance" backupGlobals =" false"
3
- beStrictAboutTestsThatDoNotTestAnything =" false" bootstrap =" vendor/autoload.php" colors =" true"
4
- processIsolation =" false" stopOnError =" false" stopOnFailure =" false"
5
- xsi : noNamespaceSchemaLocation =" https://schema.phpunit.de/10.0/phpunit.xsd" cacheDirectory =" .phpunit.cache"
6
- backupStaticProperties =" false" >
7
- <coverage >
8
- <include >
9
- <directory suffix =" .php" >src/</directory >
10
- </include >
11
- </coverage >
2
+ <phpunit xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
3
+ backupGlobals =" false"
4
+ beStrictAboutTestsThatDoNotTestAnything =" true"
5
+ bootstrap =" vendor/autoload.php"
6
+ colors =" true"
7
+ processIsolation =" false"
8
+ stopOnError =" false"
9
+ stopOnFailure =" false"
10
+ xsi : noNamespaceSchemaLocation =" https://schema.phpunit.de/10.4/phpunit.xsd"
11
+ cacheDirectory =" .phpunit.cache"
12
+ backupStaticProperties =" false"
13
+ failOnWarning =" true"
14
+ failOnDeprecation =" true"
15
+ failOnNotice =" true"
16
+ >
17
+ <coverage />
12
18
<testsuites >
<
6D40
/td>13
19
<testsuite name =" Unit" >
14
20
<directory suffix =" Test.php" >./tests/Unit/</directory >
19
25
</testsuites >
20
26
<php >
21
27
<ini name =" error_reporting" value =" E_ALL" />
22
- <env name =" DB_CONNECTION" value =" testing" />
23
28
</php >
24
- </phpunit >
29
+ <source >
30
+ <include >
31
+ <directory suffix =" .php" >src/</directory >
32
+ </include >
33
+ </source >
34
+ </phpunit >
You can’t perform that action at this time.
0 commit comments