├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── composer.json ├── phpunit.xml.dist ├── src └── get_in.php └── tests └── GetInTest.php /.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorw/get-in/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorw/get-in/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorw/get-in/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorw/get-in/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorw/get-in/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorw/get-in/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/get_in.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorw/get-in/HEAD/src/get_in.php -------------------------------------------------------------------------------- /tests/GetInTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorw/get-in/HEAD/tests/GetInTest.php --------------------------------------------------------------------------------