Skip to content
🌈 OOP Proxy wrappers utilities - generates and manages proxies of your objects
PHP Shell
Branch: master
Clone or download
Fetching latest commit…
Cannot retrieve the latest commit at this time.
Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
.github
docs
examples
src/ProxyManager
tests
.gitattributes
.gitignore
.phpstorm.meta.php
.scrutinizer.yml
.travis.coverage.sh
.travis.install.sh
.travis.yml
CHANGELOG.md
CONTRIBUTING.md
LICENSE
README.md
SECURITY.md
STABILITY.md
UPGRADE.md
composer.json
infection.json.dist
phpbench.json
phpcs.xml.dist
phpdox.xml.dist
phpmd.xml.dist
phpunit.xml.dist
proxy-manager.png
proxy-manager.svg
psalm.xml

README.md

Proxy Manager

This library aims to provide abstraction for generating various kinds of proxy classes.

ProxyManager

Build Status Code Coverage Scrutinizer Quality Score SensioLabsInsight

Total Downloads Latest Stable Version Latest Unstable Version

Documentation

You can learn about the proxy pattern and how to use the ProxyManager in the docs.

ocramius/proxy-manager for enterprise

Available as part of the Tidelift Subscription.

The maintainer of ocramius/proxy-manager and thousands of other packages are working with Tidelift to deliver commercial support and maintenance for the open source dependencies you use to build your applications. Save time, reduce risk, and improve code health, while paying the maintainers of the exact dependencies you use. Learn more..

You can also contact the maintainer at ocramius@gmail.com for looking into issues related to this package in your private projects.

Installation

The suggested installation method is via composer:

php composer.phar require ocramius/proxy-manager

Proxy example

Here's how you build a lazy loadable object with ProxyManager using a Virtual Proxy

$factory = new \ProxyManager\Factory\LazyLoadingValueHolderFactory();

$proxy = $factory->createProxy(
    \MyApp\HeavyComplexObject::class,
    function (& $wrappedObject, $proxy, $method, $parameters, & $initializer) {
        $wrappedObject = new \MyApp\HeavyComplexObject(); // instantiation logic here
        $initializer   = null; // turning off further lazy initialization
    }
);

$proxy->doFoo();

See the documentation for more supported proxy types and examples.

You can’t perform that action at this time.