Update README.md

This commit is contained in:
Morgan Dock 2018-10-07 03:42:02 -07:00 committed by GitHub
parent a3bce7e83f
commit eb16583b74
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 0 deletions

View File

@ -51,6 +51,15 @@ To start, add this project as a dependency in your Package.swift file.
.package(url: "https://github.com/PerfectlySoft/Perfect-Mustache.git", from: "3.0.0")
```
Then, add "PerfectMustache" to the list of dependencies for the target that will use PerfectMustache.
Example target configuration:
```swift
targets: [.target(name: "PerfectTemplate", dependencies: ["PerfectHTTPServer", "PerfectMustache"])]
```
Basic usage:
```swift