├── .git-blame-ignore-revs ├── .github ├── dependabot.yml ├── release-drafter.yml └── workflows │ └── test.yml ├── .gitignore ├── .scalafmt.conf ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── alias.sbt ├── project ├── build.properties └── plugins.sbt └── src ├── main ├── resources │ └── LICENSE └── scala │ └── de.cbley.refined.play.json │ └── package.scala └── test ├── scala-2 └── de.cbley.refined.play.json │ └── PlayJSONRefinedFailSpec.scala ├── scala-3 └── de.cbley.refined.play.json │ └── PlayJSONRefinedFailSpec.scala └── scala └── de.cbley.refined.play.json └── PlayJSONRefinedSpec.scala /.git-blame-ignore-revs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdv/play-json-refined/HEAD/.git-blame-ignore-revs -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdv/play-json-refined/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdv/play-json-refined/HEAD/.github/release-drafter.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdv/play-json-refined/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdv/play-json-refined/HEAD/.gitignore -------------------------------------------------------------------------------- /.scalafmt.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdv/play-json-refined/HEAD/.scalafmt.conf -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdv/play-json-refined/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdv/play-json-refined/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdv/play-json-refined/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdv/play-json-refined/HEAD/README.md -------------------------------------------------------------------------------- /alias.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdv/play-json-refined/HEAD/alias.sbt -------------------------------------------------------------------------------- /project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.7 2 | -------------------------------------------------------------------------------- /project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdv/play-json-refined/HEAD/project/plugins.sbt -------------------------------------------------------------------------------- /src/main/resources/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdv/play-json-refined/HEAD/src/main/resources/LICENSE -------------------------------------------------------------------------------- /src/main/scala/de.cbley.refined.play.json/package.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdv/play-json-refined/HEAD/src/main/scala/de.cbley.refined.play.json/package.scala -------------------------------------------------------------------------------- /src/test/scala-2/de.cbley.refined.play.json/PlayJSONRefinedFailSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdv/play-json-refined/HEAD/src/test/scala-2/de.cbley.refined.play.json/PlayJSONRefinedFailSpec.scala -------------------------------------------------------------------------------- /src/test/scala-3/de.cbley.refined.play.json/PlayJSONRefinedFailSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdv/play-json-refined/HEAD/src/test/scala-3/de.cbley.refined.play.json/PlayJSONRefinedFailSpec.scala -------------------------------------------------------------------------------- /src/test/scala/de.cbley.refined.play.json/PlayJSONRefinedSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdv/play-json-refined/HEAD/src/test/scala/de.cbley.refined.play.json/PlayJSONRefinedSpec.scala --------------------------------------------------------------------------------