├── .gitignore ├── LICENSE.txt ├── README.md ├── _ide_helper.php ├── composer.json ├── phpunit.xml ├── src └── ArrayPath.php └── test ├── bootstrap.php └── src └── ArrayPathTest.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathiasgrimm/arraypath/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathiasgrimm/arraypath/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathiasgrimm/arraypath/HEAD/README.md -------------------------------------------------------------------------------- /_ide_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathiasgrimm/arraypath/HEAD/_ide_helper.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathiasgrimm/arraypath/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathiasgrimm/arraypath/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/ArrayPath.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathiasgrimm/arraypath/HEAD/src/ArrayPath.php -------------------------------------------------------------------------------- /test/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathiasgrimm/arraypath/HEAD/test/bootstrap.php -------------------------------------------------------------------------------- /test/src/ArrayPathTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathiasgrimm/arraypath/HEAD/test/src/ArrayPathTest.php --------------------------------------------------------------------------------