Skip to content

Commit e18639d

Browse files
Merge pull request #253 from MarcinOrlowski/laravel-12
Laravel 12
2 parents 263aa1a + 56bec4c commit e18639d

File tree

88 files changed

+102
-89
lines changed

Some content is hidden

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

88 files changed

+102
-89
lines changed

.codecov.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Laravel API Response Builder CodeCov.io config file
44
#
55
# @author Marcin Orlowski <mail (#) marcinOrlowski (.) com>
6-
# @copyright 2016-2024 Marcin Orlowski
6+
# @copyright 2016-2025 Marcin Orlowski
77
# @license http://www.opensource.org/licenses/mit-license.php MIT
88
# @link https://github.com/MarcinOrlowski/laravel-api-response-builder
99
#

.github/workflows/coding-standards.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Laravel API Response Builder Static code analysis Github Action config
44
#
55
# @author Marcin Orlowski <mail (#) marcinOrlowski (.) com>
6-
# @copyright 2016-2024 Marcin Orlowski
6+
# @copyright 2016-2025 Marcin Orlowski
77
# @license http://www.opensource.org/licenses/mit-license.php MIT
88
# @link https://github.com/MarcinOrlowski/laravel-api-response-builder
99
#

.github/workflows/coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Laravel API Response Builder Unit tests Github Action config
44
#
55
# @author Marcin Orlowski <mail (#) marcinOrlowski (.) com>
6-
# @copyright 2016-2024 Marcin Orlowski
6+
# @copyright 2016-2025 Marcin Orlowski
77
# @license http://www.opensource.org/licenses/mit-license.php MIT
88
# @link https://github.com/MarcinOrlowski/laravel-api-response-builder
99
#

.github/workflows/phpstan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Laravel API Response Builder Static code analysis Github Action config
44
#
55
# @author Marcin Orlowski <mail (#) marcinOrlowski (.) com>
6-
# @copyright 2016-2024 Marcin Orlowski
6+
# @copyright 2016-2025 Marcin Orlowski
77
# @license http://www.opensource.org/licenses/mit-license.php MIT
88
# @link https://github.com/MarcinOrlowski/laravel-api-response-builder
99
#

.github/workflows/phpunit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Laravel API Response Builder Unit tests Github Action config
44
#
55
# @author Marcin Orlowski <mail (#) marcinOrlowski (.) com>
6-
# @copyright 2016-2024 Marcin Orlowski
6+
# @copyright 2016-2025 Marcin Orlowski
77
# @license http://www.opensource.org/licenses/mit-license.php MIT
88
# @link https://github.com/MarcinOrlowski/laravel-api-response-builder
99
#

.php-version

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
8.2

composer.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "marcin-orlowski/laravel-api-response-builder",
33
"description": "Helps building nice, normalized and easy to consume Laravel REST API.",
44
"homepage": "https://github.com/MarcinOrlowski/laravel-api-response-builder",
5-
"version": "11.0.0",
5+
"version": "12.0.0",
66
"keywords": [
77
"laravel",
88
"laravel10",
@@ -45,15 +45,15 @@
4545
}
4646
},
4747
"require": {
48-
"php": "^8.2|^8.3",
49-
"laravel/framework": "^11.0"
48+
"php": "^8.2|^8.3|^8.4",
49+
"laravel/framework": "^12.0"
5050
},
5151
"require-dev": {
5252
"marcin-orlowski/phpunit-extra-asserts": "^5.1.0",
53-
"orchestra/testbench": "^9.0",
53+
"orchestra/testbench": "^10.0",
5454
"phpunit/phpunit": "^11.0",
5555
"phpunit/php-code-coverage": "^11.0",
56-
"larastan/larastan": "^2.0",
56+
"larastan/larastan": "^3.0",
5757
"marcin-orlowski/lockpick": "^1.0"
5858
},
5959
"scripts": {

config/response_builder.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* See docs/config.md for detailed documentation
88
*
99
* @author Marcin Orlowski <mail (#) marcinOrlowski (.) com>
10-
* @copyright 2016-2024 Marcin Orlowski
10+
* @copyright 2016-2025 Marcin Orlowski
1111
* @license http://www.opensource.org/licenses/mit-license.php MIT
1212
* @link https://github.com/MarcinOrlowski/laravel-api-response-builder
1313
*

docs/CHANGES.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@ should be able to easily backport future new features to older versions rather e
1818

1919
## CHANGE LOG ##
2020

21+
* v12.0.0 (2025-04-16)
22+
* Added support for Laravel v11.
23+
2124
* v11.0.0 (2024-05-06)
2225
* **BACKWARD INCOMPATIBLE CHANGES** ([more info](compatibility.md)).
2326
* Added support for Laravel v11.

docs/compatibility.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
[« Documentation table of contents](README.md)
66

77
* [Important incompatibile changes](#incompatibility-notes)
8+
* [Changes in v12.*](#v12)
89
* [Changes in v11.*](#v11)
910
* [Changes in v10.*](#v10)
1011
* [Changes in v9.4](#v94)
@@ -24,13 +25,21 @@
2425

2526
Backward (in)compatibility notes. Pay attention if you are upgrading.
2627

28+
## v12 ##
29+
30+
* Requires Laravel 12.0+ and PHP 8.2+
31+
* No backward incompatible code changes.
32+
33+
2734
## v11 ##
2835

2936
* Requires Laravel 11.0+ and PHP 8.2+
37+
* No backward incompatible code changes.
3038

3139
## v10 ##
3240

3341
* Requires Laravel 10.0+ and PHP 8.1+
42+
* No backward incompatible code changes.
3443

3544
## v9.4 ##
3645

0 commit comments

Comments
 (0)