Skip to content

Commit 3491cd0

Browse files
author
Nicolas Heist
committed
Initial commit
0 parents  commit 3491cd0

4 files changed

Lines changed: 56 additions & 0 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.idea

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License
2+
3+
Copyright (c) yeebase media GmbH <support@yeebase.com>
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in
13+
all copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21+
THE SOFTWARE.

README.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Yeebase.TwoFactorAuthentication
2+
3+
The Yeebase.TwoFactorAuthentication Flow package contains extensions to the Flow authentication mechanism
4+
that let you implement Two-Factor-Authentication easily.
5+
6+
It depends on the Google2FA package https://github.com/antonioribeiro/google2fa
7+
8+
## Installation & configuration
9+
10+
Just add "yeebase/twofactorauthentication" as dependency to your composer.json and run a "composer update" in your project's root folder
11+
or simply execute:
12+
```
13+
composer require yeebase/twofactorauthentication
14+
```
15+
from your project's root.
16+
17+
TODO: Description of integration (abstract two-factor-auth controller) and settings

composer.json

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"name": "yeebase/twofactorauthentication",
3+
"type": "neos-package",
4+
"description": "Two-Factor-Authentication for Neos Flow",
5+
"license": "MIT",
6+
"require": {
7+
"neos/flow": "^4.0",
8+
"pragmarx/google2fa": "^2.0",
9+
"bacon/bacon-qr-code": "^1.0"
10+
11+
},
12+
"autoload": {
13+
"psr-4": {
14+
"Yeebase\\TwoFactorAuthentication\\": "Classes"
15+
}
16+
}
17+
}

0 commit comments

Comments
 (0)