├── .gitignore ├── LICENSE ├── README.md ├── composer.json ├── composer.lock └── src ├── Client.php ├── Helpers.php └── Validator.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evandhq/php-recommenderir/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evandhq/php-recommenderir/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evandhq/php-recommenderir/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evandhq/php-recommenderir/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evandhq/php-recommenderir/HEAD/composer.lock -------------------------------------------------------------------------------- /src/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evandhq/php-recommenderir/HEAD/src/Client.php -------------------------------------------------------------------------------- /src/Helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evandhq/php-recommenderir/HEAD/src/Helpers.php -------------------------------------------------------------------------------- /src/Validator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evandhq/php-recommenderir/HEAD/src/Validator.php --------------------------------------------------------------------------------