The SPM cannot be used
Showing All Messages https://github.com/evermeer/EVReflection.git has no Package.swift manifest in https://github.com/evermeer/EVReflection.git
I've faced the same issue and created a swift package from EVReflection that can be used like this:
.package(name: "EVReflection", url: "[email protected]:andrewreeman/EVReflection.git", .upToNextMajor(from: "5.10.2))
This seems to work for me in that it does the essential serialisation/deserialization. It does not include any of the submodules like XML or Alamofire etc as I'm not sure how these should be done in SPM. also had to comment out the EVReflectionEventKitTests.swift unit tests that just refused to compile when the project was opened as a swift package.
This probably isn't good enough for a pull request but maybe someone can use this as a good base to make a proper swift package then offer a superior pull request!