codon/super-object
A extended ArrayObject class with self-referring variables, caching and retrieve-by-path support
Maintainers
dev-master
2012-08-20 15:04 UTC
Requires
- php: >=5.4.0
Requires (Dev)
None
Suggests
None
Provides
None
Conflicts
None
Replaces
None
MIT 54af80a71532b43f606796bf913dc9f3b56d3d88
- Nabeel Shahzad <nshahzad.woop@gmail.com>
This package is not auto-updated.
Last update: 2026-06-28 11:19:53 UTC
README
A class for parsing and using JSON for config files
<?php \Codon\Config::loadJSONData($some_json_string); \Codon\Config::get('mapped.array.path.here'); # or as \Codon\Config::loadJSONData($some_json_string); $instance = \Codon\Config::getInstance(); # or $instance = \Codon\Config::i(); $value = $instance->map('mapped.array.path.here');
