zyberware / var-manager
Provides an easy way to save variables with getter- and setter-methods.
Installs: 33
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/zyberware/var-manager
This package is auto-updated.
Last update: 2025-09-29 01:26:27 UTC
README
VarManager provides an easy way to save variables with getter- and setter-methods.
Example
$vars = new \ZyberWare\VarManager(); $vars->setDay('Friday'); $vars->setConfig('main', $mainConfig); $vars->setConfig('db', $dbConfig); var_dump( $vars->getDay(), $vars->getConfig('main'), $vars->getConfig('db') );
Documentation
To create the docs, just run phpdoc
in the the project-root.
An online-version is available at phpdoc.zyberware.org/var-manager/.
License
This software is licensed under the Mozilla Public License v. 2.0. For more information, read the file LICENSE
.