From 7b6167b0ab0ae1f428db9de3fe3f52faab675e65 Mon Sep 17 00:00:00 2001 From: Valentin Udaltsov Date: Mon, 19 Feb 2024 20:13:11 +0300 Subject: [PATCH] Improved README.md --- README.md | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/README.md b/README.md index a1e9d1a..e7a6695 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ This library is an alternative to [native PHP Reflection](https://www.php.net/ma - static, - lazy, - [PSR-16](https://www.php-fig.org/psr/psr-16/) cacheable, -- compatible with native reflection, +- [99% compatible with native reflection](docs/compatibility.md), - supports most of the Psalm/PHPStan types, - can resolve templates, - does not create circular object references (can be safely used with [zend.enable_gc=0](https://www.php.net/manual/en/info.configuration.php#ini.zend.enable-gc)). @@ -53,10 +53,6 @@ $dataReflection = $articleReflection->getProperty('data'); var_dump($dataReflection->getTyphoonType()); // object representation of T template type ``` -## Compatibility - -This library is 99% compatible with native reflection API. See [compatibility](docs/compatibility.md) and [ReflectorCompatibilityTest](tests/unit/ReflectorCompatibilityTest.php) for more details. - ## Caching You can use any [PSR-16](https://www.php-fig.org/psr/psr-16/) implementation for caching, but we highly recommend [Typhoon OPcache](https://github.com/typhoon-php/opcache).