noem / tiny-proxy
Modular service container
dev-main
2023-03-22 18:54 UTC
Requires
- php: ^8.0
Requires (Dev)
- mockery/mockery: ^1.4
- noem/composer-file-embed: dev-master
- phpunit/phpunit: ^9.5
- squizlabs/php_codesniffer: ^3.6
This package is auto-updated.
Last update: 2024-10-22 22:10:38 UTC
README
A small tool to help break recursive dependency chains by creating fully compatible proxy objects on the fly. It can
also be used to defer instantiation logic until an object is first accessed. It works by generating the PHP code of the
proxy class (which you can then eval
or persist/require) via Reflection. This class is instantiated with nothing but a
constructor function that returns the actual object. Currently, this package only covers the raw code generation.
Caching to disk, or coming up with OOPy wrappers is up to consumers for now.
Example:
use Noem\TinyProxy\TinyProxy; class User{ public function __construct(public string $name, public int $age) {} } $php = TinyProxy::generateCode(User::class); $proxyClassName = TinyProxy::proxyClassName(User::class) eval($php); $proxy = new $proxyClassName(fn() => new User('John', 42)); assert( $proxy instanceof User ); // true $name = $proxy->name // 'John'