diff --git a/README.md b/README.md index cf07f49..1fed4bf 100644 --- a/README.md +++ b/README.md @@ -54,4 +54,23 @@ $result = Checker::fulfills($data, $requirement); ``` The returned object holds information about the analysis. You can check the result by calling `isValid()` on the result object. To -fetch the errors, simply call `getErrors`. \ No newline at end of file +fetch the errors, simply call `getErrors`. + +## Supported Types + +Currently the following types are supported: + + * Any + * Nullable + * Bool + * Numeric + * Float + * Int + * String + * Object + * List + +There are some open issues with ideas for more types. Feel free to send pull requests. + +Additionally you can implement the `TypeInterface` and use your own type implementations. +