Skip to content

Commit 92679ca

Browse files
Next version
1 parent 26b762a commit 92679ca

File tree

5 files changed

+41
-24
lines changed

5 files changed

+41
-24
lines changed

.github/workflows/tests.yml

Lines changed: 18 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,14 @@ jobs:
1212
strategy:
1313
matrix:
1414
php: ['8.0', '8.1', '8.2', '8.3']
15-
laravel: ['9', '10']
15+
laravel: ['9', '10', '11']
1616
exclude:
1717
- php: '8.0'
1818
laravel: '10'
19+
- php: '8.0'
20+
laravel: '11'
21+
- php: '8.1'
22+
laravel: '11'
1923
- php: '8.3'
2024
laravel: '9'
2125

@@ -36,23 +40,31 @@ jobs:
3640
run: echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json"
3741

3842
- name: Select Laravel 9
39-
uses: nick-invision/retry@v2
43+
uses: nick-invision/retry@v3
4044
with:
4145
timeout_minutes: 5
4246
max_attempts: 5
43-
command: composer require "laravel/framework:^9.52.16" "phpunit/phpunit:^9.6.15" --no-update --no-interaction
47+
command: composer require "laravel/framework:^9.52.16" "phpunit/phpunit:^9.6.17" --no-update --no-interaction
4448
if: "matrix.laravel == '9'"
4549

4650
- name: Select Laravel 10
47-
uses: nick-invision/retry@v2
51+
uses: nick-invision/retry@v3
4852
with:
4953
timeout_minutes: 5
5054
max_attempts: 5
51-
command: composer require "laravel/framework:^10.34.2" "phpunit/phpunit:^10.4.2" --no-update --no-interaction
55+
command: composer require "laravel/framework:^10.34.2" "phpunit/phpunit:^10.5.13" --no-update --no-interaction
5256
if: "matrix.laravel == '10'"
5357

58+
- name: Select Laravel 11
59+
uses: nick-invision/retry@v3
60+
with:
61+
timeout_minutes: 5
62+
max_attempts: 5
63+
command: composer require "laravel/framework:^11.0.7" "phpunit/phpunit:^10.5.13" --no-update --no-interaction
64+
if: "matrix.laravel == '11'"
65+
5466
- name: Install PHP Dependencies
55-
uses: nick-invision/retry@v2
67+
uses: nick-invision/retry@v3
5668
with:
5769
timeout_minutes: 5
5870
max_attempts: 5

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@ CHANGE LOG
22
==========
33

44

5+
## V11.0 (17/03/2024)
6+
7+
* Added Laravel 11 support
8+
9+
510
## V11.0 (04/12/2023)
611

712
* Support Laravel 9-10 only

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2013-2023 Graham Campbell <hello@gjcampbell.co.uk>
3+
Copyright (c) 2013-2024 Graham Campbell <hello@gjcampbell.co.uk>
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -16,22 +16,22 @@ Laravel Binput was created by, and is maintained by [Graham Campbell](https://gi
1616

1717
## Installation
1818

19-
This version requires [PHP](https://www.php.net/) 8.0-8.3 and supports [Laravel](https://laravel.com/) 9-10.
20-
21-
| Binput | L5.5 | L5.6 | L5.7 | L5.8 | L6 | L7 | L8 | L9 | L10 |
22-
|--------|--------------------|--------------------|--------------------|--------------------|--------------------|--------------------|--------------------|--------------------|--------------------|
23-
| 5.1 | :white_check_mark: | :white_check_mark: | :white_check_mark: | :x: | :x: | :x: | :x: | :x: | :x: |
24-
| 6.2 | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :x: | :x: | :x: | :x: |
25-
| 7.1 | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :x: | :x: | :x: |
26-
| 8.0 | :x: | :x: | :x: | :x: | :white_check_mark: | :white_check_mark: | :x: | :x: | :x: |
27-
| 9.1 | :x: | :x: | :x: | :x: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :x: |
28-
| 10.0 | :x: | :x: | :x: | :x: | :x: | :x: | :white_check_mark: | :white_check_mark: | :x: |
29-
| 11.0 | :x: | :x: | :x: | :x: | :x: | :x: | :x: | :white_check_mark: | :white_check_mark: |
19+
This version requires [PHP](https://www.php.net/) 8.0-8.3 and supports [Laravel](https://laravel.com/) 9-11.
20+
21+
| Binput | L5.5 | L5.6 | L5.7 | L5.8 | L6 | L7 | L8 | L9 | L10 | L11 |
22+
|--------|--------------------|--------------------|--------------------|--------------------|--------------------|--------------------|--------------------|--------------------|--------------------|--------------------|
23+
| 5.1 | :white_check_mark: | :white_check_mark: | :white_check_mark: | :x: | :x: | :x: | :x: | :x: | :x: | :x: |
24+
| 6.2 | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :x: | :x: | :x: | :x: | :x: |
25+
| 7.1 | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :x: | :x: | :x: | :x: |
26+
| 8.0 | :x: | :x: | :x: | :x: | :white_check_mark: | :white_check_mark: | :x: | :x: | :x: | :x: |
27+
| 9.1 | :x: | :x: | :x: | :x: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :x: | :x: |
28+
| 10.0 | :x: | :x: | :x: | :x: | :x: | :x: | :white_check_mark: | :white_check_mark: | :x: | :x: |
29+
| 11.1 | :x: | :x: | :x: | :x: | :x: | :x: | :x: | :white_check_mark: | :white_check_mark: | :white_check_mark: |
3030

3131
To get the latest version, simply require the project using [Composer](https://getcomposer.org/):
3232

3333
```bash
34-
$ composer require "graham-campbell/binput:^11.0"
34+
$ composer require "graham-campbell/binput:^11.1"
3535
```
3636

3737
Once installed, if you are not using automatic package discovery, then you need to register the `GrahamCampbell\Security\SecurityServiceProvider` and `GrahamCampbell\Binput\BinputServiceProvider` service providers in your `config/app.php`.

composer.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,16 @@
1212
],
1313
"require": {
1414
"php": "^8.0.2",
15-
"graham-campbell/security": "^11.1",
16-
"illuminate/contracts": "^9.0 || ^10.0",
17-
"illuminate/http": "^9.0 || ^10.0",
18-
"illuminate/support": "^9.0 || ^10.0"
15+
"graham-campbell/security": "^11.2",
16+
"illuminate/contracts": "^9.0 || ^10.0 || ^11.0",
17+
"illuminate/http": "^9.0 || ^10.0 || ^11.0",
18+
"illuminate/support": "^9.0 || ^10.0 || ^11.0"
1919
},
2020
"require-dev": {
2121
"graham-campbell/analyzer": "^4.1",
2222
"graham-campbell/testbench": "^6.1",
2323
"mockery/mockery": "^1.6.6",
24-
"phpunit/phpunit": "^9.6.15 || ^10.4.2"
24+
"phpunit/phpunit": "^9.6.17 || ^10.5.13"
2525
},
2626
"autoload": {
2727
"psr-4": {

0 commit comments

Comments
 (0)