mdref.json config
[mdref/mdref-propro] / propro.md
1 # pecl/propro
2
3 ## About:
4
5 The "Property Proxy" extension provides a fairly transparent proxy for internal object properties hidden in custom non-zval implementations.
6
7 See the php\PropertyProxy class, for the user-land visible part of the implementation.
8
9 ## Installation:
10
11 This extension is hosted at [PECL](http://pecl.php.net) and can be installed with [PEAR](http://pear.php.net)'s pecl command:
12
13 # pecl install propro
14
15 ### PHARext
16
17 Watch out for [PECL replicates](https://replicator.pharext.org?propro)
18 and pharext packages attached to [releases](https://github.com/m6w6/ext-propro/releases).
19
20 ### Checkout
21
22 git clone github.com:m6w6/ext-propro
23 cd ext-propro
24 /path/to/phpize
25 ./configure --with-php-config=/path/to/php-config
26 make
27 sudo make install
28
29 ## Internals:
30
31 > ***NOTE:***
32 This extension mostly only provides infrastructure for other extensions.
33 See the [API docs here](http://m6w6.github.io/ext-propro/master/).