Skip to content
This repository was archived by the owner on Oct 15, 2023. It is now read-only.

Commit 12f1aaa

Browse files
committed
Support SwiftPM
1 parent 81c6875 commit 12f1aaa

File tree

2 files changed

+24
-9
lines changed

2 files changed

+24
-9
lines changed

Package.swift

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
// swift-tools-version:5.0
2+
import PackageDescription
3+
4+
let package = Package(
5+
name: "ImageTransition",
6+
platforms: [.iOS("12.0")],
7+
products: [
8+
.library(
9+
name: "ImageTransition",
10+
targets: ["ImageTransition"])
11+
],
12+
dependencies: [],
13+
targets: [
14+
.target(
15+
name: "ImageTransition",
16+
dependencies: []),
17+
.testTarget(
18+
name: "ImageTransitionTests",
19+
dependencies: ["ImageTransition"])
20+
]
21+
)

README.md

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,9 @@ Something looks like below:
2222

2323
## Installation
2424

25-
### Carthage
26-
27-
- Add `github "shtnkgm/ImageTransition"` to your Cartfile.
28-
- Run carthage update.
29-
30-
### CocoaPods
31-
32-
- Add `pod 'ImageTransition'` to your podfile.
33-
- Run pod update.
25+
- Swift Package Manager: `https://github.com/shtnkgm/ImageTransition.git`
26+
- Carthage: `github "shtnkgm/ImageTransition"`
27+
- CocoaPods: `pod "ImageTransition"`
3428

3529
## Usage
3630

0 commit comments

Comments
 (0)