mirror of
https://github.com/nicoverbruggen/phpmon.git
synced 2025-08-08 04:20:07 +02:00
- Moved over common functionality to package - Added phpmon-cli target (for fast switching via the terminal)
16 lines
377 B
Swift
16 lines
377 B
Swift
// swift-tools-version:5.5
|
|
// The swift-tools-version declares the minimum version of Swift required to build this package.
|
|
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "PMCommon",
|
|
products: [
|
|
.library(name: "PMCommon", targets: ["PMCommon"]),
|
|
],
|
|
dependencies: [],
|
|
targets: [
|
|
.target(name: "PMCommon", dependencies: []),
|
|
]
|
|
)
|