Skip to content

Commit 2058c2b

Browse files
authored
Prepare Laravel 11 support
1 parent e40941b commit 2058c2b

File tree

4 files changed

+12
-56
lines changed

4 files changed

+12
-56
lines changed

.github/workflows/run-tests.yml

Lines changed: 9 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -12,28 +12,23 @@ jobs:
1212
strategy:
1313
fail-fast: false
1414
matrix:
15-
php: ["8.0", "8.1", "8.2", "8.3"]
16-
laravel: ["8.*", "9.*", "10.*"]
15+
php: ["8.1", "8.2", "8.3"]
16+
laravel: ["10.*", "11.*"]
1717
stability: ["prefer-stable"]
1818
include:
19-
- laravel: "8.*"
20-
testbench: "^6.23"
21-
symfony: "^5"
22-
collision: "^5"
23-
phpunit-config: "phpunit-9.xml"
24-
- laravel: "9.*"
25-
testbench: "^7"
26-
symfony: "^6"
27-
collision: "^6"
28-
phpunit-config: "phpunit-9.xml"
2919
- laravel: "10.*"
3020
testbench: "^8"
3121
symfony: "^6.2"
3222
collision: "^7"
3323
phpunit-config: "phpunit.xml"
24+
- laravel: "11.*"
25+
testbench: "^9"
26+
symfony: "^7"
27+
collision: "^8"
28+
phpunit-config: "phpunit.xml"
3429
exclude:
35-
- laravel: "10.*"
36-
php: "8.0"
30+
- laravel: "11.*"
31+
php: "8.1"
3732

3833
name: "P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }}"
3934

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
# Laravel HCaptcha
44

5-
65
[![Latest Version on Packagist](https://img.shields.io/packagist/v/rvxlab/hcaptcha.svg?label=Packagist&style=flat-square)](https://packagist.org/packages/rvxlab/hcaptcha)
76
[![GitHub Tests Action Status](https://img.shields.io/github/actions/workflow/status/rvxlab/hcaptcha/run-tests.yml?label=Tests&style=flat-square)](https://github.com/RVxLab/hcaptcha/actions/workflows/run-tests.yml)
87
[![GitHub Code Style Action Status](https://img.shields.io/github/actions/workflow/status/rvxlab/hcaptcha/php-cs-fixer.yml?label=Lint&style=flat-square)](https://github.com/RVxLab/hcaptcha/actions/workflows/php-cs-fixer.yml)
@@ -21,6 +20,7 @@ This fork is a near-drop-in replacement for Scyllaly's package, maintaining the
2120
| 8.x | 7.4 |
2221
| 9.x | 8.0 |
2322
| 10.x | 8.1 |
23+
| 11.x | 8.2 |
2424

2525
Need support for Laravel 7 or before? Check the [4.x branch](https://github.com/RVxLab/hcaptcha/tree/4.x).
2626

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@
1414
},
1515
{
1616
"name": "RVxLab",
17-
"email": "richard@rvx.works"
17+
"email": "code@rvx.works"
1818
}
1919
],
2020
"require": {
2121
"php": "^7.4 || ^8.0",
2222
"ext-json": "*",
23-
"illuminate/support": "^8.28 || ^9.0 || ^10.0",
23+
"illuminate/support": "^8.28 || ^9.0 || ^10.0 || ^11.0",
2424
"guzzlehttp/guzzle": "^7.4"
2525
},
2626
"require-dev": {

phpunit-9.xml

Lines changed: 0 additions & 39 deletions
This file was deleted.

0 commit comments

Comments
 (0)