dev-master
9999999-dev http://github.com/FlorianWolters/PHP-Component-Util-ObserverThe Observer behavioural design pattern as a PHP component.
LGPL-3.0+
The Requires
- php >=5.4
pattern utility subject observer behavioural
Wallogit.com
2017 © Pedro Peláez
The Observer behavioural design pattern as a PHP component.
FlorianWolters\Component\Util\Observer provides the Observer behavioural design pattern as a simple-to-use PHP component., (*2)
Observer is a behavioural design pattern and defined as follows:, (*3)
"Sefine a one-to many dependency between objects so that when one object changes state, all its dependents are notified and updated automatically.", (*4)
-- E. Gamma, et al. Design Patterns: Elements of Reusable Object-Oriented software. Westford: Addison-Wesley, 1995., (*5)
FlorianWolters\Component\Util\Observer should be installed using the dependency manager Composer. Composer can be installed with PHP., (*6)
php -r "eval('?>'.file_get_contents('http://getcomposer.org/installer'));"
This will just check a few PHP settings and then download
composer.pharto your working directory. This file is the Composer binary. It is a PHAR (PHP archive), which is an archive format for PHP which can be run on the command line, amongst other things., (*7)Next, run the
installcommand to resolve and download dependencies:, (*8)
php composer.phar install
FlorianWolters\Component\Util\Observer should be installed using the PEAR installer. This installer is the PHP community's de-facto standard for installing PHP components., (*9)
pear channel-discover pear.florianwolters.de pear install --alldeps fw/Observer
If you are creating a component that relies on FlorianWolters\Component\Util\Observer, please make sure that you add FlorianWolters\Component\Util\Observer to your component's composer.json file:, (*10)
{
"require": {
"florianwolters/component-util-observer": "0.1.*"
}
}
If you are creating a component that relies on FlorianWolters\Component\Util\Observer, please make sure that you add FlorianWolters\Component\Util\Observer to your component's package.xml file:, (*11)
<dependencies>
<required>
<package>
<name>Observer</name>
<channel>pear.florianwolters.de</channel>
<min>0.1.0</min>
<max>0.1.99</max>
</package>
</required>
</dependencies>
The best documentation for FlorianWolters\Component\Util\Observer are the unit tests, which are shipped in the package. You will find them installed into your PEAR repository, which on Linux systems is normally /usr/share/php/test., (*12)
If you want to patch or enhance this component, you will need to create a suitable development environment. The easiest way to do that is to install phix4componentdev:, (*13)
# phix4componentdev pear channel-discover pear.phix-project.org pear install phix/phix4componentdev
You can then clone the Git repository:, (*14)
# PHP-Component-Util-Observer git clone http://github.com/FlorianWolters/PHP-Component-Util-Observer
Then, install a local copy of this component's dependencies to complete the development environment:, (*15)
# build vendor/ folder phing build-vendor
To make life easier for you, common tasks (such as running unit tests, generating code review analytics, and creating the PEAR package) have been automated using phing. You'll find the automated steps inside the build.xml file that ships with the component., (*16)
Run the command phing in the component's top-level folder to see the full list of available automated tasks., (*17)
This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version., (*18)
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details., (*19)
You should have received a copy of the GNU Lesser General Public License along with this program. If not, see http://gnu.org/licenses/lgpl.txt., (*20)
The Observer behavioural design pattern as a PHP component.
LGPL-3.0+
pattern utility subject observer behavioural