Download the PHP package gemini-commerce/php-client-product-configurator without Composer

On this page you can find all versions of the php package gemini-commerce/php-client-product-configurator. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package php-client-product-configurator

product-configurator

Introduction

This comprehensive guide will equip you with the knowledge to integrate and leverage our Product Configurator Service in your applications.

Quick Start

Get up and running in no time! Follow these steps to kickstart your integration:

  1. Authentication: Obtain your integration JWT to authenticate your requests.
  2. Client Libraries: Explore our GitHub repositories to grab client libraries in your preferred programming language.
  3. API Overview: Familiarize yourself with our RESTful API using the OpenAPI specification.

Integration

API Overview

Our RESTful API is the gateway to unlocking the full potential of Product Configurator. Check out the detailed API Reference for a granular understanding of each endpoint and request/response format.

Client Libraries

To expedite your integration process, we provide client libraries for various programming languages. Find the one that suits your stack in our GitHub repositories.

Authentication

Security is paramount. Learn how to authenticate your requests using JWT. This ensures a secure and reliable connection between your application and Product Configurator.

Configuration Management

Configurator Lifecycle

Understand the lifecycle of configurators, from draft to active and deleted. This flexibility allows you to manage configurations at your own pace.

Steps and Options

Configure product steps with ease and define options effortlessly. Explore the power of dependencies to create dynamic and intuitive configurations.

Matrices

Delve into matrices—your secret weapon. Explore price and weight matrices, and learn how configured steps influence properties and pricing.

Price Management

Unleash dynamic pricing with our versatile price matrices. From fixed prices to incremental structures, adapt to diverse pricing models effortlessly.

Security

Your data is in safe hands. Discover how Product Configurator ensures security through JWT authentication, safeguarding your sensitive information.

Backward Compatibility

Stay ahead of the curve. Learn about our versioning strategy, providing backward compatibility while allowing our service to evolve seamlessly.

Developer Support

Have questions? Need assistance? Write to us at [email protected] and we will get back to you.

Installation & Usage

Requirements

PHP 7.4 and later. Should also work with PHP 8.0.

Composer

To install the bindings via Composer, add the following to composer.json:

Then run composer install

Manual Installation

Download the files and include autoload.php:

Getting Started

Please follow the installation procedure and then run the following:

API Endpoints

All URIs are relative to https://product-configurator.api.gogemini.io

Class Method HTTP request Description
ConfigurationApi productConfiguratorGetAvailableConfiguration GET /v1/{tenantId}/product/{productId}/configuration Get Available Configuration
ConfigurationApi productConfiguratorGetAvailableConfiguration2 POST /v1/{tenantId}/product/{productId}/configuration Get Available Configuration
ConfigurationApi productConfiguratorGetConfigurationFromSelections POST /v1/{tenantId}/product/{productId}/configuration-from-selections Get Configuration from Selections
ConfiguratorApi productConfiguratorCopyConfigurator POST /v1/{tenantId}/product/{sourceConfiguratorId}/copy Copy Configurator
ConfiguratorApi productConfiguratorCreateConfigurator POST /v1/{tenantId}/product/{productId}/create Create Configurator
ConfiguratorApi productConfiguratorDeleteConfigurator DELETE /v1/{tenantId}/configurator/{configuratorId} Delete Configurator
ConfiguratorApi productConfiguratorGetConfiguratorByProductId GET /v1/{tenantId}/product/{productId} Get Configurator by Product ID
ConfiguratorApi productConfiguratorGetConfiguratorByProductId2 GET /v1/{tenantId}/product/{productId}/status/{status} Get Configurator by Product ID
ConfiguratorApi productConfiguratorListConfigurators POST /v1/{tenantId}/product/{productId}/page-size/{pageSize}/configurators List Product Configurators
ConfiguratorApi productConfiguratorUpdateConfigurator PUT /v1/{tenantId}/configurator/{configuratorId} Update Configurator
DependencyApi productConfiguratorCreateDependency POST /v1/{tenantId}/step/{stepId}/dependency/create Create Dependency
DependencyApi productConfiguratorDeleteDependency DELETE /v1/{tenantId}/dependency/{dependencyId} Delete Dependency
DependencyApi productConfiguratorListDependencies POST /v1/{tenantId}/page-size/{pageSize}/dependencies List Dependencies
DependencyApi productConfiguratorUpdateDependency PUT /v1/{tenantId}/dependency/{dependencyId} Update Dependency
MatrixApi productConfiguratorCreateMatrix POST /v1/{tenantId}/matrix/create Create Matrix
MatrixApi productConfiguratorDeleteMatrix DELETE /v1/{tenantId}/matrix/{matrixId} Delete Matrix
MatrixApi productConfiguratorGetMatrix GET /v1/{tenantId}/matrix/{matrixId} Get Matrix
MatrixApi productConfiguratorListMatrices POST /v1/{tenantId}/configurator/{configuratorId}/page-size/{pageSize}/matrices List Matrices
MatrixApi productConfiguratorRemovePricelistFromMatrix DELETE /v1/{tenantId}/matrix/{matrixId}/pricelist/{pricelistGrn} Remove Pricelist from Matrix
MatrixApi productConfiguratorUpdateMatrix PUT /v1/{tenantId}/matrix/{matrixId} Update Matrix
OptionApi productConfiguratorBulkCreateOptions POST /v1/{tenantId}/step/{stepId}/option/create/bulk Bulk Create Options
OptionApi productConfiguratorBulkDeleteOptions POST /v1/{tenantId}/option/delete/bulk Bulk Delete Options
OptionApi productConfiguratorBulkUpdateOptions PUT /v1/{tenantId}/option/bulk Bulk Update Options
OptionApi productConfiguratorCopyOption POST /v1/{tenantId}/option/{sourceOptionId}/copy Copy Option
OptionApi productConfiguratorCreateOption POST /v1/{tenantId}/step/{stepId}/option/create Create Option
OptionApi productConfiguratorDeleteOption DELETE /v1/{tenantId}/option/{optionId} Delete Option
OptionApi productConfiguratorListOptions POST /v1/{tenantId}/step/{stepId}/page-size/{pageSize}/options List Options
OptionApi productConfiguratorUpdateOption PUT /v1/{tenantId}/option/{optionId} Update Option
ProductConfiguratorApi productConfiguratorGetProperty GET /v1/{tenantId}/property/{propertyId}
ProductConfiguratorApi productConfiguratorListPropertiesByConfiguration POST /v1/{tenantId}/configurator/{configuratorId}/page-size/{pageSize}/properties
PropertyApi productConfiguratorBulkCreateProperties POST /v1/{tenantId}/property/create/bulk Bulk Create Properties
PropertyApi productConfiguratorBulkUpdateProperties PUT /v1/{tenantId}/properties/bulk Bulk Update Properties
PropertyApi productConfiguratorCreateProperty POST /v1/{tenantId}/property/create Create Property
PropertyApi productConfiguratorListProperties POST /v1/{tenantId}/matrix/{matrixId}/page-size/{pageSize}/properties List Properties
PropertyApi productConfiguratorUpdateProperty PUT /v1/{tenantId}/property/{propertyId} Update Property
StepApi productConfiguratorBulkCreateSteps POST /v1/{tenantId}/configurator/{configuratorId}/step/create/bulk Bulk Create Steps
StepApi productConfiguratorBulkDeleteSteps POST /v1/{tenantId}/step/delete/bulk Bulk Delete Steps
StepApi productConfiguratorCopyStep POST /v1/{tenantId}/step/{sourceStepId}/copy Copy Step
StepApi productConfiguratorCreateStep POST /v1/{tenantId}/configurator/{configuratorId}/step/create Create Step
StepApi productConfiguratorDeleteStep DELETE /v1/{tenantId}/step/{stepId} Delete Step
StepApi productConfiguratorUpdateStep PUT /v1/{tenantId}/step/{stepId} Update Step

Models

Authorization

Authentication schemes defined for the API:

APIAuthorization

standardAuthorization

Tests

To run the tests, use:

Author

[email protected]

About this package

This PHP package is automatically generated by the OpenAPI Generator project:


All versions of php-client-product-configurator with dependencies

PHP Build Version
Package Version
Requires php Version ^7.4 || ^8.0
ext-curl Version *
ext-json Version *
ext-mbstring Version *
guzzlehttp/guzzle Version ^7.3
guzzlehttp/psr7 Version ^1.7 || ^2.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package gemini-commerce/php-client-product-configurator contains the following files

Loading the files please wait ....