mirror of https://github.com/vapor/docs.git
Merge branch 'master' into bhPackages
This commit is contained in:
commit
c987673bec
|
|
@ -126,6 +126,7 @@ These are packages maintained by community members that work great with Vapor.
|
|||
- [Heimdall](https://github.com/himani93/heimdall): An easy to use HTTP request logger.
|
||||
- [SteamPress](https://github.com/brokenhandsio/SteamPress): A blogging engine for Vapor.
|
||||
- [Vapor Security Headers](https://github.com/brokenhandsio/VaporSecurityHeaders): Add common security headers to your Vapor Application.
|
||||
- [MarkdownProvider](https://github.com/vapor-community/markdown-provider) - Easily use Markdown from Leaf.
|
||||
|
||||
### Providers
|
||||
|
||||
|
|
|
|||
|
|
@ -13,7 +13,7 @@ let package = Package(
|
|||
name: "Project",
|
||||
dependencies: [
|
||||
.Package(url: "https://github.com/vapor/vapor.git", majorVersion: 2),
|
||||
.Package(url: "https://github.com/vapor/redis-provider.git", majorVersion: 1)
|
||||
.Package(url: "https://github.com/vapor/redis-provider.git", majorVersion: 2)
|
||||
],
|
||||
exclude: [ ... ]
|
||||
)
|
||||
|
|
@ -40,4 +40,4 @@ let package = Package(
|
|||
)
|
||||
```
|
||||
|
||||
Use `import Redis`.
|
||||
Use `import Redis`.
|
||||
|
|
|
|||
Loading…
Reference in New Issue