This package extends the Swift Foundation framework with extensions to existing types and (in future) entirely new types.
Swift 6.0+
To integrate FoundationPlus into your Xcode project using Swift Package Manager, follow these steps:
- Open your project in Xcode.
- Select
File>Swift Packages>Add Package Dependency.... - Enter the package repository URL:
https://github.com/flexlixrup/FoundationPlus. - Choose the latest release or specify a version range.
- Add the package to your target.
Alternatively, you can add the following dependency to your Package.swift file:
dependencies: [
.package(url: "https://github.com/flexlixrup/FoundationPlus", from: "1.0.0")
]Then, include FoundationPlus as a dependency in your target:
.target(
name: "YourTargetName",
dependencies: [
"FoundationPlus"
]),The full documentation is provided via DocC on Swift Package Manager.
If you would like to contribute, please follow these steps:
- Fork the repository.
- Create a new branch (
git checkout -b feature-branch). - Commit your changes (
git commit -am 'Add new feature'). - Push to the branch (
git push origin feature-branch). - Create a new Pull Request.
This project is licensed under the MIT License - see the LICENSE file for details.
If you have any questions, feel free to open an issue.