diff --git a/Package.swift b/Package.swift index 8f7848b..6d1f965 100644 --- a/Package.swift +++ b/Package.swift @@ -3,22 +3,22 @@ import PackageDescription let package = Package( - name: "Push-API", + name: "PushAPI", platforms: [ .macOS(.v10_15), .iOS(.v13) ], products: [ .library( - name: "Push-API", - targets: ["Push-API"]), + name: "PushAPI", + targets: ["PushAPI"]), ], dependencies: [ .package(url: "https://github.com/kylebrowning/APNSwift.git", from: "3.0.0"), ], targets: [ .target( - name: "Push-API", + name: "PushAPI", dependencies: [.product(name: "APNSwift", package: "APNSwift")]) ] ) diff --git a/Sources/Push-API/AuthenticatedPushMessage.swift b/Sources/PushAPI/AuthenticatedPushMessage.swift similarity index 100% rename from Sources/Push-API/AuthenticatedPushMessage.swift rename to Sources/PushAPI/AuthenticatedPushMessage.swift diff --git a/Sources/Push-API/DeviceAuthentication.swift b/Sources/PushAPI/DeviceAuthentication.swift similarity index 100% rename from Sources/Push-API/DeviceAuthentication.swift rename to Sources/PushAPI/DeviceAuthentication.swift diff --git a/Sources/Push-API/DeviceDecision.swift b/Sources/PushAPI/DeviceDecision.swift similarity index 100% rename from Sources/Push-API/DeviceDecision.swift rename to Sources/PushAPI/DeviceDecision.swift diff --git a/Sources/Push-API/DeviceRegistration.swift b/Sources/PushAPI/DeviceRegistration.swift similarity index 100% rename from Sources/Push-API/DeviceRegistration.swift rename to Sources/PushAPI/DeviceRegistration.swift diff --git a/Sources/Push-API/DeviceUpdate.swift b/Sources/PushAPI/DeviceUpdate.swift similarity index 100% rename from Sources/Push-API/DeviceUpdate.swift rename to Sources/PushAPI/DeviceUpdate.swift diff --git a/Sources/Push-API/Push.swift b/Sources/PushAPI/Push.swift similarity index 100% rename from Sources/Push-API/Push.swift rename to Sources/PushAPI/Push.swift diff --git a/Sources/Push-API/PushMessage.swift b/Sources/PushAPI/PushMessage.swift similarity index 100% rename from Sources/Push-API/PushMessage.swift rename to Sources/PushAPI/PushMessage.swift