Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,23 @@ For an excellent description on how the standard OAuth flows work, and what to e

Vapor OAuth can be added to your Vapor add with a simple provider. To get started, first add the library to your `Package.swift` dependencies:

Latest stable
```swift
dependencies: [
...,
.package(url: "https://github.com/brokenhandsio/vapor-oauth", from: "0.6.0"))
.package(url: "https://github.com/brokenhandsio/vapor-oauth", from: "0.6.1")
]
```

Latest beta
```swift
dependencies: [
...,
.package(url: "https://github.com/brokenhandsio/vapor-oauth", from: "1.0.0-beta.2")
]
```


Next import the library into where you set up your `Droplet`:

```swift
Expand Down