Skip to content

Commit

Permalink
Version bump to 1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rowan-m committed Feb 18, 2023
1 parent f4c4e7c commit d59a801
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
11 changes: 8 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ and v3.
- reCAPTCHA: https://www.google.com/recaptcha
- This repo: https://github.com/google/recaptcha
- Hosted demo: https://recaptcha-demo.appspot.com/
- Version: 1.2.4
- Version: 1.3.0
- License: BSD, see [LICENSE](LICENSE)

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

```sh
composer require google/recaptcha "^1.2"
composer require google/recaptcha "^1.3"
```

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

```json
"require": {
"google/recaptcha": "^1.2"
"google/recaptcha": "^1.3"
}
```

### Support for earlier versions of PHP

The 1.3 release moves to PHP 8 and up. For earlier versions, you will need to
stay with the 1.2 releases.

### Direct download

Download the [ZIP file](https://github.com/google/recaptcha/archive/master.zip)
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
},
"extra": {
"branch-alias": {
"dev-master": "1.2.x-dev"
"dev-master": "1.3.x-dev"
}
},
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/ReCaptcha/ReCaptcha.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ class ReCaptcha
* Version of this client library.
* @const string
*/
public const VERSION = 'php_1.2.4';
public const VERSION = 'php_1.3.0';

/**
* URL for reCAPTCHA siteverify API
Expand Down

0 comments on commit d59a801

Please sign in to comment.