├── .github └── workflows │ └── build.yml ├── .gitignore ├── LICENSE ├── README.md ├── composer.json ├── composer.lock ├── phpunit.xml ├── src ├── Entities │ ├── PShopWs.php │ ├── PShopWsAddresses.php │ ├── PShopWsCategories.php │ ├── PShopWsCustomers.php │ ├── PShopWsManufacturers.php │ ├── PShopWsOrders.php │ └── PShopWsProducts.php ├── Exceptions │ └── PShopWsException.php └── Services │ ├── ServicePShopFilters.php │ └── ServiceSimpleXmlToArray.php └── test ├── Mocks ├── PShopWsAddressesTestClass.php ├── PShopWsCategoriesTestClass.php ├── PShopWsCustomersTestClass.php ├── PShopWsManufacturersTestClass.php ├── PShopWsOrdersTestClass.php └── PShopWsProductsTestClass.php ├── PShopWsAddressesTest.php ├── PShopWsCategoriesTest.php ├── PShopWsCustomersTest.php ├── PShopWsManufacturersTest.php ├── PShopWsOrdersTest.php ├── PShopWsProductsTest.php └── ServiceSimpleXmlToArrayTest.php /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kusflo/PrestaShopWebService/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kusflo/PrestaShopWebService/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kusflo/PrestaShopWebService/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kusflo/PrestaShopWebService/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kusflo/PrestaShopWebService/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kusflo/PrestaShopWebService/HEAD/composer.lock -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kusflo/PrestaShopWebService/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/Entities/PShopWs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kusflo/PrestaShopWebService/HEAD/src/Entities/PShopWs.php -------------------------------------------------------------------------------- /src/Entities/PShopWsAddresses.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kusflo/PrestaShopWebService/HEAD/src/Entities/PShopWsAddresses.php -------------------------------------------------------------------------------- /src/Entities/PShopWsCategories.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kusflo/PrestaShopWebService/HEAD/src/Entities/PShopWsCategories.php -------------------------------------------------------------------------------- /src/Entities/PShopWsCustomers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kusflo/PrestaShopWebService/HEAD/src/Entities/PShopWsCustomers.php -------------------------------------------------------------------------------- /src/Entities/PShopWsManufacturers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kusflo/PrestaShopWebService/HEAD/src/Entities/PShopWsManufacturers.php -------------------------------------------------------------------------------- /src/Entities/PShopWsOrders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kusflo/PrestaShopWebService/HEAD/src/Entities/PShopWsOrders.php -------------------------------------------------------------------------------- /src/Entities/PShopWsProducts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kusflo/PrestaShopWebService/HEAD/src/Entities/PShopWsProducts.php -------------------------------------------------------------------------------- /src/Exceptions/PShopWsException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kusflo/PrestaShopWebService/HEAD/src/Exceptions/PShopWsException.php -------------------------------------------------------------------------------- /src/Services/ServicePShopFilters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kusflo/PrestaShopWebService/HEAD/src/Services/ServicePShopFilters.php -------------------------------------------------------------------------------- /src/Services/ServiceSimpleXmlToArray.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kusflo/PrestaShopWebService/HEAD/src/Services/ServiceSimpleXmlToArray.php -------------------------------------------------------------------------------- /test/Mocks/PShopWsAddressesTestClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kusflo/PrestaShopWebService/HEAD/test/Mocks/PShopWsAddressesTestClass.php -------------------------------------------------------------------------------- /test/Mocks/PShopWsCategoriesTestClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kusflo/PrestaShopWebService/HEAD/test/Mocks/PShopWsCategoriesTestClass.php -------------------------------------------------------------------------------- /test/Mocks/PShopWsCustomersTestClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kusflo/PrestaShopWebService/HEAD/test/Mocks/PShopWsCustomersTestClass.php -------------------------------------------------------------------------------- /test/Mocks/PShopWsManufacturersTestClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kusflo/PrestaShopWebService/HEAD/test/Mocks/PShopWsManufacturersTestClass.php -------------------------------------------------------------------------------- /test/Mocks/PShopWsOrdersTestClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kusflo/PrestaShopWebService/HEAD/test/Mocks/PShopWsOrdersTestClass.php -------------------------------------------------------------------------------- /test/Mocks/PShopWsProductsTestClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kusflo/PrestaShopWebService/HEAD/test/Mocks/PShopWsProductsTestClass.php -------------------------------------------------------------------------------- /test/PShopWsAddressesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kusflo/PrestaShopWebService/HEAD/test/PShopWsAddressesTest.php -------------------------------------------------------------------------------- /test/PShopWsCategoriesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kusflo/PrestaShopWebService/HEAD/test/PShopWsCategoriesTest.php -------------------------------------------------------------------------------- /test/PShopWsCustomersTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kusflo/PrestaShopWebService/HEAD/test/PShopWsCustomersTest.php -------------------------------------------------------------------------------- /test/PShopWsManufacturersTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kusflo/PrestaShopWebService/HEAD/test/PShopWsManufacturersTest.php -------------------------------------------------------------------------------- /test/PShopWsOrdersTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kusflo/PrestaShopWebService/HEAD/test/PShopWsOrdersTest.php -------------------------------------------------------------------------------- /test/PShopWsProductsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kusflo/PrestaShopWebService/HEAD/test/PShopWsProductsTest.php -------------------------------------------------------------------------------- /test/ServiceSimpleXmlToArrayTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kusflo/PrestaShopWebService/HEAD/test/ServiceSimpleXmlToArrayTest.php --------------------------------------------------------------------------------