├── .phpunit-watcher.yml ├── .styleci.yml ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── composer.json ├── infection.json.dist ├── psalm.xml └── src ├── ClassCache.php ├── ClassConfigFactory.php ├── ClassRenderer.php ├── Config ├── ClassConfig.php ├── MethodConfig.php ├── ParameterConfig.php └── TypeConfig.php ├── ObjectProxy.php ├── ProxyManager.php └── ProxyTrait.php /.phpunit-watcher.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/proxy/HEAD/.phpunit-watcher.yml -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/proxy/HEAD/.styleci.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/proxy/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/proxy/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/proxy/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/proxy/HEAD/composer.json -------------------------------------------------------------------------------- /infection.json.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/proxy/HEAD/infection.json.dist -------------------------------------------------------------------------------- /psalm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/proxy/HEAD/psalm.xml -------------------------------------------------------------------------------- /src/ClassCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/proxy/HEAD/src/ClassCache.php -------------------------------------------------------------------------------- /src/ClassConfigFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/proxy/HEAD/src/ClassConfigFactory.php -------------------------------------------------------------------------------- /src/ClassRenderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/proxy/HEAD/src/ClassRenderer.php -------------------------------------------------------------------------------- /src/Config/ClassConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/proxy/HEAD/src/Config/ClassConfig.php -------------------------------------------------------------------------------- /src/Config/MethodConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/proxy/HEAD/src/Config/MethodConfig.php -------------------------------------------------------------------------------- /src/Config/ParameterConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/proxy/HEAD/src/Config/ParameterConfig.php -------------------------------------------------------------------------------- /src/Config/TypeConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/proxy/HEAD/src/Config/TypeConfig.php -------------------------------------------------------------------------------- /src/ObjectProxy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/proxy/HEAD/src/ObjectProxy.php -------------------------------------------------------------------------------- /src/ProxyManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/proxy/HEAD/src/ProxyManager.php -------------------------------------------------------------------------------- /src/ProxyTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/proxy/HEAD/src/ProxyTrait.php --------------------------------------------------------------------------------