Skip to content
This repository was archived by the owner on Apr 19, 2025. It is now read-only.

Commit 8cc3e60

Browse files
committed
Add files
1 parent 847c956 commit 8cc3e60

File tree

2 files changed

+33
-0
lines changed

2 files changed

+33
-0
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,4 @@
1+
/.idea
2+
/.scannerwork
13
.DS_Store
4+
.Thumbs.db

composer.json

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
{
2+
"name": "michaeldzjap/twofactor-auth",
3+
"description": "A two-factor authentication package for Laravel 5.5 tuned for use with MessageBird Verify",
4+
"keywords": ["authentication", "two-factor", "2fa", "messagebird", "laravel"],
5+
"homepage": "https://github.com/michaeldzjap/twofactor-authentication",
6+
"license": "MIT",
7+
"type": "package",
8+
"minimum-stability": "dev",
9+
"require": {
10+
"illuminate/support": "5.5.*|5.6.*"
11+
},
12+
"extra": {
13+
"laravel": {
14+
"providers": [
15+
"MichaelDzjap\\TwoFactorAuth\\TwoFactorAuthServiceProvider"
16+
]
17+
}
18+
},
19+
"authors": [
20+
{
21+
"name": "Michael Dzjaparidze",
22+
"role": "Developer"
23+
}
24+
],
25+
"autoload": {
26+
"psr-4": {
27+
"MichaelDzjap\\TwoFactorAuth\\": "src/"
28+
}
29+
}
30+
}

0 commit comments

Comments
 (0)