Merge pull request #4 from mmdock/patch-1

Update README.md
This commit is contained in:
Kyle Jessup 2018-11-20 10:32:03 -05:00 committed by GitHub
commit f83944926a
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