Skip to content

Commit bb2ff0a

Browse files
committed
Merge branch 'release/6.2.0'
2 parents 6c7a09b + 3fbe567 commit bb2ff0a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+84
-62
lines changed

.github/workflows/tests.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,17 @@ jobs:
1919
matrix:
2020
php: [8.2, 8.3, 8.4]
2121
laravel: [10, 11, 12]
22-
phpunit: [10.5, 11]
22+
phpunit: [10.5, 11, 12]
23+
exclude:
24+
- php: 8.2
25+
laravel: 12
26+
phpunit: 12
27+
- php: 8.2
28+
laravel: 11
29+
phpunit: 12
30+
- php: 8.2
31+
laravel: 10
32+
phpunit: 12
2333

2434
steps:
2535
- name: Checkout Code

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file. This projec
55

66
## Unreleased
77

8+
## [6.2.0] - 2025-04-09
9+
10+
### Added
11+
12+
- Package now supports PHPUnit 12.
13+
814
## [6.1.0] - 2025-02-24
915

1016
### Added

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"ext-json": "*",
2626
"illuminate/contracts": "^10.0|^11.0|^12.0",
2727
"illuminate/support": "^10.0|^11.0|^12.0",
28-
"phpunit/phpunit": "^10.5|^11.0"
28+
"phpunit/phpunit": "^10.5|^11.0|^12.0"
2929
},
3030
"autoload": {
3131
"psr-4": {

src/Assert.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22
/*
3-
* Copyright 2024 Cloud Creativity Limited
3+
* Copyright 2025 Cloud Creativity Limited
44
*
55
* Use of this source code is governed by an MIT-style
66
* license that can be found in the LICENSE file or at

src/Compare.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22
/*
3-
* Copyright 2024 Cloud Creativity Limited
3+
* Copyright 2025 Cloud Creativity Limited
44
*
55
* Use of this source code is governed by an MIT-style
66
* license that can be found in the LICENSE file or at

src/Concerns/HasDocumentAssertions.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22
/*
3-
* Copyright 2024 Cloud Creativity Limited
3+
* Copyright 2025 Cloud Creativity Limited
44
*
55
* Use of this source code is governed by an MIT-style
66
* license that can be found in the LICENSE file or at

src/Concerns/HasHttpAssertions.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22
/*
3-
* Copyright 2024 Cloud Creativity Limited
3+
* Copyright 2025 Cloud Creativity Limited
44
*
55
* Use of this source code is governed by an MIT-style
66
* license that can be found in the LICENSE file or at

src/Constraints/EmptyOrMissingList.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22
/*
3-
* Copyright 2024 Cloud Creativity Limited
3+
* Copyright 2025 Cloud Creativity Limited
44
*
55
* Use of this source code is governed by an MIT-style
66
* license that can be found in the LICENSE file or at

src/Constraints/ExactInDocument.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22
/*
3-
* Copyright 2024 Cloud Creativity Limited
3+
* Copyright 2025 Cloud Creativity Limited
44
*
55
* Use of this source code is governed by an MIT-style
66
* license that can be found in the LICENSE file or at

src/Constraints/ExactInList.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22
/*
3-
* Copyright 2024 Cloud Creativity Limited
3+
* Copyright 2025 Cloud Creativity Limited
44
*
55
* Use of this source code is governed by an MIT-style
66
* license that can be found in the LICENSE file or at

0 commit comments

Comments
 (0)