Skip to content

Commit

Permalink
fix changelog and installation docs
Browse files Browse the repository at this point in the history
  • Loading branch information
steinkel committed Dec 19, 2016
1 parent 6a83cd5 commit 964fb74
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .semver
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
:major: 3
:minor: 2
:patch: 5
:major: 4
:minor: 0
:patch: 0
:special: ''
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@ Changelog

Releases for CakePHP 3
-------------
* 4.0.0
* Add Google Authenticator
* Add improvements to SimpleRbac, like star to invert rules and `user.` prefix to match values from the user array
* Add `allowed` to manage the AuthLinkHelper when action is allowed
* Add option to configure the api table and finder in ApiKeyAuthenticate

* 3.2.5
* Fixed RegisterBehavior api, make getRegisterValidators public.

Expand Down
12 changes: 12 additions & 0 deletions Docs/Documentation/Installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,18 @@ composer require google/recaptcha:@stable
NOTE: you'll need to configure the reCaptcha key and secret, check the [Configuration](Configuration.md)
page for more details.

If you want to use Google Authenticator features...

```
composer require robthree/twofactorauth:"^1.5.2"
```

NOTE: you'll need to enable `Users.GoogleAuthenticator.login`

```
Configure::write('Users.GoogleAuthenticator.login', true);
```

Creating Required Tables
------------------------
If you want to use the Users tables to store your users and social accounts:
Expand Down

0 comments on commit 964fb74

Please sign in to comment.