Skip to content

Commit d2fa82d

Browse files
Merge pull request #249 from MarcinOrlowski/dev
Release 11.0.0
2 parents 9b6d00a + ff6a490 commit d2fa82d

File tree

86 files changed

+102
-102
lines changed

Some content is hidden

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

86 files changed

+102
-102
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-2023 Marcin Orlowski
6+
# @copyright 2016-2024 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-2023 Marcin Orlowski
6+
# @copyright 2016-2024 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-2023 Marcin Orlowski
6+
# @copyright 2016-2024 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-2023 Marcin Orlowski
6+
# @copyright 2016-2024 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: 8 additions & 9 deletions
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-2023 Marcin Orlowski
6+
# @copyright 2016-2024 Marcin Orlowski
77
# @license http://www.opensource.org/licenses/mit-license.php MIT
88
# @link https://github.com/MarcinOrlowski/laravel-api-response-builder
99
#
@@ -34,17 +34,16 @@ jobs:
3434
runs-on: ubuntu-latest
3535

3636
steps:
37+
# https://github.com/marketplace/actions/setup-php-action
38+
- name: "Setup PHP ${{ matrix.php }}"
39+
uses: shivammathur/setup-php@v2
40+
with:
41+
php-version: "${{ matrix.php }}"
42+
43+
# https://github.com/marketplace/actions/checkout
3744
- name: "Checkout repository..."
3845
uses: actions/checkout@v4
3946

40-
# https://github.com/marketplace/actions/composer-php-actions
41-
- name: "Installing dependencies..."
42-
uses: php-actions/composer@v6
43-
with:
44-
version: 2
45-
php_version: "${{ matrix.php }}"
46-
dev: yes
47-
4847
- name: "Running PHPUnit..."
4948
shell: bash
5049
run: |

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,5 +66,5 @@ Development branch:
6666

6767
## License ##
6868

69-
* Written and copyrighted &copy;2016-2023 by Marcin Orlowski <mail (#) marcinorlowski (.) com>
69+
* Written and copyrighted &copy;2016-2024 by Marcin Orlowski <mail (#) marcinorlowski (.) com>
7070
* ResponseBuilder is open-sourced software licensed under the [MIT license](http://opensource.org/licenses/MIT)

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-2023 Marcin Orlowski
10+
* @copyright 2016-2024 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: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@ should be able to easily backport future new features to older versions rather e
1818

1919
## CHANGE LOG ##
2020

21-
* dev
21+
* v11.0.0 (2023-02-20)
22+
* **BACKWARD INCOMPATIBLE CHANGES** ([more info](compatibility.md)).
2223
* Added support for Laravel v11.
2324
* Corrected documentation (thanks to Ehsan Soleimanian)
2425

docs/compatibility.md

Lines changed: 5 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 v11.*](#v11)
89
* [Changes in v10.*](#v10)
910
* [Changes in v9.4](#v94)
1011
* [Changes in v9.*](#v9) (up to v9.3)
@@ -23,6 +24,10 @@
2324

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

27+
## v11 ##
28+
29+
* Requires Laravel 11.0+ and PHP 8.2+
30+
2631
## v10 ##
2732

2833
* Requires Laravel 10.0+ and PHP 8.1+

phpcs.xml

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

0 commit comments

Comments
 (0)