├── .gitignore ├── CHANGELOG.md ├── README.md ├── Service ├── RestApi.php └── SoapApi.php └── composer.json /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/experius/Magento-2-Api-Client/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/experius/Magento-2-Api-Client/HEAD/README.md -------------------------------------------------------------------------------- /Service/RestApi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/experius/Magento-2-Api-Client/HEAD/Service/RestApi.php -------------------------------------------------------------------------------- /Service/SoapApi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/experius/Magento-2-Api-Client/HEAD/Service/SoapApi.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/experius/Magento-2-Api-Client/HEAD/composer.json --------------------------------------------------------------------------------