├── .gitignore ├── .travis.yml ├── CREDITS ├── LICENSE ├── NOTICE ├── README.md ├── composer.json ├── composer.lock ├── examples ├── ItemrankImport.php ├── ItemrankQuery.php └── SampleEvent.php ├── phpunit.xml.dist ├── src └── predictionio │ ├── BaseClient.php │ ├── EngineClient.php │ ├── EventClient.php │ ├── Exporter.php │ ├── FileExporter.php │ └── PredictionIOAPIError.php └── tests └── Unit ├── EngineClientTest.php ├── EventClientTest.php ├── ExporterTest.php └── FileExporterTest.php /.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | composer.phar 3 | docs 4 | vendor 5 | .idea 6 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/predictionio-sdk-php/HEAD/.travis.yml -------------------------------------------------------------------------------- /CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/predictionio-sdk-php/HEAD/CREDITS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/predictionio-sdk-php/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/predictionio-sdk-php/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/predictionio-sdk-php/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/predictionio-sdk-php/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/predictionio-sdk-php/HEAD/composer.lock -------------------------------------------------------------------------------- /examples/ItemrankImport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/predictionio-sdk-php/HEAD/examples/ItemrankImport.php -------------------------------------------------------------------------------- /examples/ItemrankQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/predictionio-sdk-php/HEAD/examples/ItemrankQuery.php -------------------------------------------------------------------------------- /examples/SampleEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/predictionio-sdk-php/HEAD/examples/SampleEvent.php -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/predictionio-sdk-php/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/predictionio/BaseClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/predictionio-sdk-php/HEAD/src/predictionio/BaseClient.php -------------------------------------------------------------------------------- /src/predictionio/EngineClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/predictionio-sdk-php/HEAD/src/predictionio/EngineClient.php -------------------------------------------------------------------------------- /src/predictionio/EventClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/predictionio-sdk-php/HEAD/src/predictionio/EventClient.php -------------------------------------------------------------------------------- /src/predictionio/Exporter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/predictionio-sdk-php/HEAD/src/predictionio/Exporter.php -------------------------------------------------------------------------------- /src/predictionio/FileExporter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/predictionio-sdk-php/HEAD/src/predictionio/FileExporter.php -------------------------------------------------------------------------------- /src/predictionio/PredictionIOAPIError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/predictionio-sdk-php/HEAD/src/predictionio/PredictionIOAPIError.php -------------------------------------------------------------------------------- /tests/Unit/EngineClientTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/predictionio-sdk-php/HEAD/tests/Unit/EngineClientTest.php -------------------------------------------------------------------------------- /tests/Unit/EventClientTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/predictionio-sdk-php/HEAD/tests/Unit/EventClientTest.php -------------------------------------------------------------------------------- /tests/Unit/ExporterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/predictionio-sdk-php/HEAD/tests/Unit/ExporterTest.php -------------------------------------------------------------------------------- /tests/Unit/FileExporterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/predictionio-sdk-php/HEAD/tests/Unit/FileExporterTest.php --------------------------------------------------------------------------------