Skip to content
This repository was archived by the owner on Jun 10, 2024. It is now read-only.

Commit 9bfe22f

Browse files
committed
Merge branch 'release/v4'
* release/v4: Laravel 7 compatibility. Closes #38 php 7.4 added to travis file
2 parents 3e990f5 + 19407b9 commit 9bfe22f

File tree

3 files changed

+10
-5
lines changed

3 files changed

+10
-5
lines changed

.travis.yml

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ php:
44
- 7.1
55
- 7.2
66
- 7.3
7+
- 7.4
78

89
before_script:
910
- travis_retry composer self-update

README.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Laravel ReCAPTCHA v3, checkbox and invisible
2-
Simple and painless Google reCAPTCHA package for Laravel 5 and 6
2+
Simple and painless Google reCAPTCHA package for Laravel 5, 6 and 7
33

44
Available reCAPTCHA versions:
55
* v2 Invisible
@@ -13,7 +13,8 @@ Available reCAPTCHA versions:
1313
## System requirements
1414
| Package | reCAPTCHA | PHP | Laravel | Docs |
1515
|-----------------|-------------|-------------|-----------------|-------------------|
16-
| 4.x |v3, v2 Invisible, v2 Checkbox | 7.1 or greater | 5.5 or greater, 6 | [latest](https://laravel-recaptcha-docs.biscolab.com) |
16+
| 4.1.x |v3, v2 Invisible, v2 Checkbox | 7.1 or greater | 5.5 or greater, 6, 7 | [latest](https://laravel-recaptcha-docs.biscolab.com) |
17+
| 4.0.x |v3, v2 Invisible, v2 Checkbox | 7.1 or greater | 5.5 or greater, 6 | [v4.0.x](https://laravel-recaptcha-docs.biscolab.com/docs/4.0.x/intro) |
1718
| 3.x |v3, v2 Invisible, v2 Checkbox | 7.1 or greater | 5.5 or greater, 6 ready (*) | [v3.6.1](https://laravel-recaptcha-docs.biscolab.com/docs/3.6.1/intro) |
1819
| 2.x | v2 Invisible, v2 Checkbox | 5.5.9, 7.0 or greater | 5.0 or greater | [v2.0.4](https://laravel-recaptcha-docs.biscolab.com/docs/2.0.4/intro) |
1920

composer.json

+6-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "biscolab/laravel-recaptcha",
3-
"description": "Simple ReCaptcha package for Laravel 5 and 6",
4-
"version": "4.0.1",
3+
"description": "Simple and painless Google reCAPTCHA package for Laravel 5, 6 and 7",
4+
"version": "4.1.0",
55
"license": "MIT",
66
"type": "library",
77
"keywords": [
@@ -21,7 +21,7 @@
2121
],
2222
"require": {
2323
"php": "^7.1",
24-
"laravel/framework": "^5.5|^6.0"
24+
"laravel/framework": "^5.5|^6.0|^7.0"
2525
},
2626
"require-dev": {
2727
"orchestra/testbench": "~3.0",
@@ -43,6 +43,9 @@
4343
"scripts": {
4444
"test": "vendor/bin/phpunit --colors=always"
4545
},
46+
"suggest": {
47+
"biscolab/laravel-authlog": "Allows logged-in users management and forced log-out"
48+
},
4649
"extra": {
4750
"laravel": {
4851
"providers": [

0 commit comments

Comments
 (0)