forked from PerfectlySoft/Perfect-LocalAuthentication-MySQL
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPackage.swift
More file actions
23 lines (20 loc) · 1.03 KB
/
Package.swift
File metadata and controls
23 lines (20 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// swift-tools-version:4.2
import PackageDescription
let package = Package(
name: "Perfect-LocalAuthentication-MySQL",
products: [
.library(name: "PerfectLocalAuthentication", targets: ["PerfectLocalAuthentication"]),
],
dependencies: [
.package(url: "https://github.com/iamjono/JSONConfig.git", from: "3.0.0"),
.package(url: "https://github.com/PerfectlySoft/Perfect-RequestLogger.git", from: "3.0.0"),
.package(url: "https://github.com/PerfectlySoft/Perfect-SMTP.git", from: "3.0.0"),
.package(url: "https://github.com/SwiftORM/MySQL-StORM.git", from: "3.0.0"),
.package(url: "https://github.com/PerfectlySoft/Perfect-Session-MySQL.git", from: "3.0.0"),
.package(url: "https://github.com/PerfectlySoft/Perfect-Mustache.git", from: "3.0.0"),
.package(url: "https://github.com/PerfectlySoft/Perfect-HTTP.git", from: "3.0.0")
],
targets: [
.target(name: "PerfectLocalAuthentication", dependencies: ["JSONConfig", "PerfectRequestLogger","PerfectSMTP","MySQLStORM","PerfectSessionMySQL","PerfectMustache","PerfectHTTP"])
]
)