Skip to content

Commit

Permalink
Improved README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
vudaltsov committed Feb 19, 2024
1 parent 2bb4b49 commit 7b6167b
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)).
Expand Down Expand Up @@ -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).
Expand Down

0 comments on commit 7b6167b

Please sign in to comment.