A Push driver for the Feather CMS Push service using Google FCM.
Use at your own risk.
To add a dependency on the package, declare it in your Package.swift:
.package(url: "https://github.com/feather-framework/feather-push-driver-fcm", .upToNextMinor(from: "0.3.0")),and to your application target, add FeatherPushDriverFCM to your dependencies:
.product(name: "FeatherPushDriverFCM", package: "feather-push-driver-fcm")Example Package.swift file with FeatherPushDriverFCM as a dependency:
// swift-tools-version:5.9
import PackageDescription
let package = Package(
name: "my-application",
dependencies: [
.package(url: "https://github.com/feather-framework/feather-push-driver-fcm", .upToNextMinor(from: "0.3.0")),
],
targets: [
.target(name: "MyApplication", dependencies: [
.product(name: "FeatherPushDriverFCM", package: "feather-push-driver-fcm")
]),
.testTarget(name: "MyApplicationTests", dependencies: [
.target(name: "MyApplication"),
]),
]
)