Skip to content

geoffreylopez/cegid-y2-sdk-php8

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

24 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CEGID / Y2 - SDK

Forked from https://github.com/pgrimaud/cegid-y2-sdk

Consume CEGID/Y2's SOAP API.

Requirements

  • PHP >= 8.1
  • Package php-soap (ext-soap extension)

Installation

composer require web-atypique/cegid-y2-sdk-php8

Basic usage

Hello world :

<?php

use Y2\ItemInventory\HelloWorld;
use Y2\ItemInventory\ItemInventoryWcfService;
use Y2\ItemInventory\RetailContext;

$wsdl     = ''; // WSDL interface
$login    = ''; // credentials for basic auth
$password = ''; // credentials for basic auth
$dbId     = ''; // Y2 database ID

$retailContext = new RetailContext();
$retailContext->setDatabaseId($dbId);
$helloWorld = new HelloWorld('ZZZ', $retailContext);

try {
    $client = new ItemInventoryWcfService($wsdl, [
        'login'    => $login,
        'password' => $password
    ]);

    $call = $client->HelloWorld($helloWorld)->getHelloWorldResult();

    print_r($call);

} catch (SoapFault $e) {
    echo "SOAP ERROR CALL : " . $e->getMessage() . "\n";
}

License

Licensed under the terms of the MIT License.

Packages

No packages published

Languages

  • PHP 100.0%