Allows traversal of objects and arrays with a simple string syntax. Extracted from Peridot's matcher library: Leo.
$data = [
'name' => 'Brian',
'hobbies' => [
'reading',
'programming',
'lion taming' ],
'address' => [
'street' => '1234 Lane',
'zip' => '12345' ]
];
usePeridot\ObjectPath\ObjectPath;
$path = newObjectPath($data);
$reading = $path->get('hobbies[0]');
$zip = $path->get('address[zip]');
// the result of get() is an ObjectPathValue instance$value = $reading->getPropertyValue();
// The syntax also works for objects and nested structures$data = newstdClass();
$data->name = 'Brian';
$data->address = newstdClass();
$data->address->zip = '12345';
$hobby = newstdClass();
$hobby->name = 'reading';
$hobby->style = 'relaxing';
$data->hobbies = [$hobby];
$path = newObjectPath($data);
$name = $path->get('name');
$zip = $path->get('address->zip');
$reading = $path->get('hobbies[0]->name');$ composer install
$ vendor/bin/peridot specs/