Skip to content

Commit 35cbbaa

Browse files
committed
chore: Initial commit
0 parents  commit 35cbbaa

File tree

3 files changed

+61
-0
lines changed

3 files changed

+61
-0
lines changed

LICENSE.txt

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

README.md

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# instant2fa-php
2+
3+
A PHP client for [Instant2FA](https://instant2fa.com).
4+
5+
## Installation
6+
7+
## Usage
8+
9+
See our [integration guide](http://docs.instant2fa.com/).

composer.json

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
{
2+
"name": "clef/instant2fa-php",
3+
"description": "A PHP client for Instant2FA.",
4+
"keywords": [
5+
"two factor",
6+
"2fa",
7+
"authentication",
8+
"otp",
9+
"api"
10+
],
11+
"homepage": "https://instant2fa.com",
12+
"license": "MIT",
13+
"authors": [
14+
{
15+
"name": "Instant2FA and contributors",
16+
"homepage": "https://github.com/clef/instant2fa-php/contributors"
17+
}
18+
],
19+
"require": {
20+
"php": ">=5.3.3"
21+
},
22+
"require-dev": {
23+
"phpunit/phpunit": "~4.0",
24+
"satooshi/php-coveralls": "~0.6.1",
25+
"squizlabs/php_codesniffer": "~2.0"
26+
},
27+
"autoload": {
28+
"psr-4": { "Instant2FA\\" : "lib/" }
29+
}
30+
}

0 commit comments

Comments
 (0)