Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rchatham/AuthyStore
Two factor authentication with authy
https://github.com/rchatham/AuthyStore
Last synced: 2 months ago
JSON representation
Two factor authentication with authy
- Host: GitHub
- URL: https://github.com/rchatham/AuthyStore
- Owner: rchatham
- License: other
- Created: 2015-09-23T14:41:15.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-11-26T07:06:13.000Z (about 8 years ago)
- Last Synced: 2024-10-12T21:18:02.038Z (3 months ago)
- Language: Swift
- Size: 4.88 KB
- Stars: 5
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- Awesome-Swift-Packages - AuthyStore - Two factor authentication with authy. (Authentication)
README
# AuthyStore
Two factor authentication with authy[![SPM compatible](https://img.shields.io/badge/spm-supported-orange.svg)](https://swift.org/package-manager/)
### Installation
#### Swift Package Manager
Add the following line
```swift
.Package(url: "https://github.com/rchatham/AuthyStore.git", majorVersion: 0)
```to your Package.swift file as illustrated below.
```swift
import PackageDescriptionlet package = Package(
name: "YourAppName",
targets: [],
dependencies: [
.Package(url: "https://github.com/rchatham/AuthyStore.git", majorVersion: 0),
]
)
```