Skip to content

Commit d59a801

Browse files
committed
Version bump to 1.3.0
1 parent f4c4e7c commit d59a801

File tree

3 files changed

+10
-5
lines changed

3 files changed

+10
-5
lines changed

README.md

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ and v3.
1313
- reCAPTCHA: https://www.google.com/recaptcha
1414
- This repo: https://github.com/google/recaptcha
1515
- Hosted demo: https://recaptcha-demo.appspot.com/
16-
- Version: 1.2.4
16+
- Version: 1.3.0
1717
- License: BSD, see [LICENSE](LICENSE)
1818

1919
## Installation
@@ -26,17 +26,22 @@ Use [Composer](https://getcomposer.org) to install this library from Packagist:
2626
Run the following command from your project directory to add the dependency:
2727

2828
```sh
29-
composer require google/recaptcha "^1.2"
29+
composer require google/recaptcha "^1.3"
3030
```
3131

3232
Alternatively, add the dependency directly to your `composer.json` file:
3333

3434
```json
3535
"require": {
36-
"google/recaptcha": "^1.2"
36+
"google/recaptcha": "^1.3"
3737
}
3838
```
3939

40+
### Support for earlier versions of PHP
41+
42+
The 1.3 release moves to PHP 8 and up. For earlier versions, you will need to
43+
stay with the 1.2 releases.
44+
4045
### Direct download
4146

4247
Download the [ZIP file](https://github.com/google/recaptcha/archive/master.zip)

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
},
2525
"extra": {
2626
"branch-alias": {
27-
"dev-master": "1.2.x-dev"
27+
"dev-master": "1.3.x-dev"
2828
}
2929
},
3030
"scripts": {

src/ReCaptcha/ReCaptcha.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ class ReCaptcha
4343
* Version of this client library.
4444
* @const string
4545
*/
46-
public const VERSION = 'php_1.2.4';
46+
public const VERSION = 'php_1.3.0';
4747

4848
/**
4949
* URL for reCAPTCHA siteverify API

0 commit comments

Comments
 (0)