https://github.com/spacenation/swift-package-readme-template
:rocket: ReadMe template for swift package repos
https://github.com/spacenation/swift-package-readme-template
Last synced: 17 days ago
JSON representation
:rocket: ReadMe template for swift package repos
- Host: GitHub
- URL: https://github.com/spacenation/swift-package-readme-template
- Owner: spacenation
- License: mit
- Created: 2024-05-29T04:53:23.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-05-29T05:43:51.000Z (11 months ago)
- Last Synced: 2024-05-29T18:11:54.991Z (11 months ago)
- Size: 9.77 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Swift Package Name

[](LICENSE)Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
## Usage
```swift
import Example
// example code
```## Installation
To use the `Example` library in a SwiftPM project,
add it to the dependencies for your package and your target:```swift
let package = Package(
// name, platforms, products, etc.
dependencies: [
// other dependencies
.package(url: "https://github.com/spacenation/swift-example", from: "1.0.0"),
],
targets: [
.target(
// name, etc.
dependencies: [
// other dependencies
.product(name: "Example", package: "swift-example")
]
)
// other targets
]
)
```## Contributions
Feel free to contribute via fork/pull request to the main branch. If you want to request a feature or report a bug, please start a new issue.## Become a Sponsor
If you find this project useful, please consider becoming our [GitHub Sponsor](https://github.com/sponsors/spacenation).