+ This implementation is now deprecated and will be removed in the future. You are advised to use native enums instead.
+
+
+*Prior to version 5.1, GraphQLite only supported Enums through the 3rd party library, [myclabs/php-enum](https://github.com/myclabs/php-enum). If you'd like to use this implementation you'll first need to add this library as a dependency to your application.*
```bash
$ composer require myclabs/php-enum
@@ -557,12 +605,6 @@ in your project. By default, GraphQLite will look for "Enum" classes in the name
reason,
-
## Deprecation of fields
You can mark a field as deprecated in your GraphQL Schema by just annotating it with the `@deprecated` PHPDoc annotation. Note that a description (reason) is required for the annotation to be rendered.