Download the PHP package faridmasoum/testapi without Composer
On this page you can find all versions of the php package faridmasoum/testapi. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download faridmasoum/testapi
More information about faridmasoum/testapi
Files in faridmasoum/testapi
Download faridmasoum/testapi
More information about faridmasoum/testapi
Files in faridmasoum/testapi
Vendor faridmasoum
Package testapi
Short Description RMI Shopify importer api library
License MIT
Homepage https://github.com/faridmasoum/testapi
Package testapi
Short Description RMI Shopify importer api library
License MIT
Homepage https://github.com/faridmasoum/testapi
Please rate this library. Is it a good library?
Informations about the package testapi
testapi
RMI Datalink API
Installation
or add
And run following command to download extension using composer
Basic setup
Configuration
Usage
Create an index.php file in root folder of project and insert these code on it.
require __DIR__ . '/vendor/autoload.php';
use RMIDatalink\Fetch;
use RMIDatalink\Datalink;
use RMIDatalink\Enums\ResponseTypes;
use RMIDatalink\Enums\ResponseProducts;
use \Symfony\Component\VarDumper\Test\VarDumperTestTrait;
$config = [
"api-path" => "http://rmiserver.rminno.com:8001/api",
"limit" => 50, //limitation on all requests
"access-key" => "z/uWekiobDEedhozKm6JntDkcHoUzKm6JntDkczKm6JntDkcaQ", //Datalink Access Key
"bucket-name" => "faridConfigurableBucket", //bucket name
"response-type" => ResponseTypes::Json, //response type of results
"response-products" => ResponseProducts::All, //type of products Just Simples/Just Configurable/ Configurable>Simple
];
$apiObject = new Fetch($config);
// required fields
$fields = ['id', 'title', 'images', 'additionalImages', 'productType'];
// get all products
$ConfigurableProducts = $apiObject->configurableProducts(0, $fields);
All versions of testapi with dependencies
PHP Build Version
Package Version
The package faridmasoum/testapi contains the following files
Loading the files please wait ....