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

Commit dfd8595

Browse files
authored
Merge pull request #14 from aaronsaray/aaronsaray-readme-changes
Updated README.md
2 parents f4ebddd + 72a9deb commit dfd8595

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# Laravel ReCAPTCHA - v3
2-
Simple Google ReCaptcha package for Laravel 5
2+
Simple Google reCAPTCHA package for Laravel 5
33

44
[![Build Status](https://travis-ci.org/biscolab/laravel-recaptcha.svg?branch=master)](https://travis-ci.org/biscolab/laravel-recaptcha) [![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/biscolab/laravel-recaptcha/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/biscolab/laravel-recaptcha/?branch=master) ![Packagist version](https://img.shields.io/packagist/v/biscolab/laravel-recaptcha.svg)
55

66
## System requirements
7-
PHP 7.1 or grater
7+
PHP 7.1 or greater
88

99
Are you still using PHP 5.6? Please go to [V2](https://github.com/biscolab/laravel-recaptcha/tree/v2.0.4)
1010

@@ -21,7 +21,7 @@ The service **provider** must be registered in `config/app.php`:
2121
Biscolab\ReCaptcha\ReCaptchaServiceProvider::class,
2222
];
2323
```
24-
You can use the facade for shorter code. Add "ReCaptcha" to your aliases:
24+
You can use the facade for shorter code. Add `ReCaptcha` to your aliases:
2525
```php
2626
'aliases' => [
2727
...
@@ -45,15 +45,15 @@ return [
4545
'skip_ip' => [] // array of IP addresses - String: dotted quad format e.g.: 127.0.0.1
4646
];
4747
```
48-
For more invermation about Site Key and Secret Key please visit [Google RaCaptcha developer documentation](https://developers.google.com/recaptcha/docs/start)
49-
Get more info about ReCAPTCHA version at https://developers.google.com/recaptcha/docs/versions
50-
**skip_ip** is a list of IP addresses that, if recognized, disable the recaptcha validation (return always true).
48+
For more invermation about Site Key and Secret Key please visit [Google reCAPTCHA developer documentation](https://developers.google.com/recaptcha/docs/start)
49+
Get more info about reCAPTCHA version at https://developers.google.com/recaptcha/docs/versions
50+
**skip_ip** is a list of IP addresses that, if recognized, disable the reCAPTCHA validation (return always true).
5151

5252
### Have you updated?
5353
If you are migrating from an older version add `skip_ip` array in `recaptcha.php` configuration file.
5454

5555
### Customize error message
56-
Before starting please add validation recaptcha message to `resources/lang/[LANG]/validation.php` file
56+
Before starting please add the validation message to `resources/lang/[LANG]/validation.php` file
5757
```php
5858
return [
5959
...

0 commit comments

Comments
 (0)