esyoil-gmbh / collmex
Collmex PHP SDK
Installs: 408
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 23
pkg:composer/esyoil-gmbh/collmex
Requires
- php: ~7.1 || ~7.2 || ~7.3
- ext-curl: *
- ext-json: *
- ext-zip: *
- neitanod/forceutf8: ^2.0
- symfony/finder: ^4.0 || ^5.0
- symfony/http-foundation: ^4.0 || ^5.0
Requires (Dev)
- friendsofphp/php-cs-fixer: 2.16.1
- laravel/framework: ^7.2
- mockery/mockery: ^1.2
- phpunit/phpunit: ^7.5
- roave/security-advisories: dev-master
- squizlabs/php_codesniffer: ^3.4
- vimeo/psalm: ^3.1
- dev-master
- v1.3.0
- 1.2.0
- 1.1.3
- 1.1.2
- 1.1.1
- 1.1.0
- 1.0.0
- 0.12.0
- 0.11.1
- 0.11.0
- 0.10.1
- 0.10.0
- 0.9.2
- 0.9.1
- 0.9.0
- 0.8.12
- 0.8.11
- 0.8.10
- 0.8.9
- 0.8.8
- 0.8.7
- 0.8.6
- 0.8.5
- 0.8.4
- 0.8.3
- 0.8.2
- 0.8.1
- 0.8.0
- 0.7.7
- 0.7.6
- 0.7.5
- 0.7.4
- 0.7.3
- 0.7.2
- 0.7.1
- 0.7.0
- 0.6.21
- 0.6.20
- 0.6.19
- 0.6.18
- 0.6.16
- 0.6.15
- 0.6.14
- 0.6.13
- 0.6.12
- 0.6.11
- 0.6.10
- 0.6.9
- 0.6.8
- 0.6.7
- 0.6.6
- 0.6.5
- 0.6.4
- 0.6.3
- 0.6.2
- 0.6.1
- 0.6.0
- 0.5.3
- 0.5.2
- 0.5.1
- 0.5.0
- 0.4.1
- 0.4.0
- 0.3.5
- 0.3.4
- 0.3.3
- 0.3.2
- 0.3.1
- 0.3.0
- 0.2.2
- 0.2.1
- 0.2.0
- 0.1.4
- 0.1.3
- 0.1.2
- dev-task/add-php7.4-support
- dev-feat_exception_chaining
This package is auto-updated.
Last update: 2025-10-14 18:58:58 UTC
README
This library provides a wrapper for the Collmex API. It's not complete yet, some record types (and maybe some features) are missing.
Please create a pull request if you have implemented a new type/feature or create issues for bugs/feature requests.
There is (or least should be…) a Type class for every Collmex record type
("Satzart"). Currently only the base types (MESSAGE, LOGIN,
NEW_OBJECT_ID) and a few normal record types are implemented:
ABO_GETACC_BALACCBAL_GETACCDOCACCDOC_GETBILL_OF_MATERIAL_GETCMXABOCMXBOMCMXDLVCMXEPFCMXINVCMXKNDCMXMGDCMXORD-2CMXPODCMXPRDCMXPRICMXPRI_CHANGECMXSTKCMXUMSCUSTOMER_GETDELIVERY_GETINVOICE_GETINVOICE_OUTPUT_SETMEMBER_GETOPEN_ITEMOPEN_ITEMS_GETPAYMENT_CONFIRMATIONPRICE_GROUPPRICE_GROUPS_GETPRODUCT_GETPRODUCT_PRICE_GETPRODUCTION_ORDERPRODUCTION_ORDER_GETPROJECT_STAFFPROJECT_STAFF_GETPURCHASE_ORDER_GETSALES_ORDER_GETSHIPMENT_CONFIRMSHIPMENT_NOTIFICATION_SENDSHIPMENT_ORDERS_GETSTOCK_AVAILABLESTOCK_AVAILABLE_GETSTOCK_CHANGESTOCK_CHANGE_GETSTOCK_GETTRACKING_NUMBER
Installation
Using Composer, just add it to your composer.json by running:
composer require mjaschen/collmex
If you want to use the included Laravel service provider
CollmexServiceProvider, add it to the config/app.php providers array:
<?php return [ // ... 'providers' => [ // ... \MarcusJaschen\Collmex\CollmexServiceProvider::class, ], // ... ];
Compatibility
The Collmex PHP SDK requires PHP >= 7.1. If you're still using an ancient PHP version, you can install older versions of the Collmex PHP SDK:
- for PHP 7.0 compatibility: use the 0.12.x branch (
composer require mjaschen/collmex:~0.12) - for PHP 5.6 compatibility: use the 0.11.x branch (
composer require mjaschen/collmex:~0.11) - for PHP 5.5 compatibility: use the 0.6.x branch (
composer require mjaschen/collmex:~0.6) - for PHP 5.4 compatibility: use the 0.4.x branch (
composer require mjaschen/collmex:~0.4) - for PHP 5.3 compatibility: use the 0.3.x branch (
composer require mjaschen/collmex:~0.3)
New features will only go into the master.
Usage/Examples
Request information from Collmex API
Load a Collmex Customer record:
<?php use MarcusJaschen\Collmex\Client\Curl as CurlClient; use MarcusJaschen\Collmex\Request; use MarcusJaschen\Collmex\Type\CustomerGet; // initialize HTTP client $collmexClient = new CurlClient('USER', 'PASSWORD', 'CUSTOMER_ID'); // create request object $collmexRequest = new Request($collmexClient); // create a record type; we're querying the API for customer with ID=12345 $getCustomerType = new CustomerGet(array('customer_id' => '12345')); // send HTTP request and get response object $collmexResponse = $collmexRequest->send($getCustomerType->getCsv()); if ($collmexResponse->isError()) { echo 'Collmex error: ' . $collmexResponse->getErrorMessage() . '; Code=' . $collmexResponse->getErrorCode() . PHP_EOL; } else { $records = $collmexResponse->getRecords(); foreach ($records as $record) { // contains one Customer object and the Message object(s) var_dump($record->getData()); } } // show unparsed response contents: var_dump($collmexResponse->getResponseRaw());
Create a new Collmex customer record
Create a new Collmex Customer record and get the Collmex customer ID from the response data:
<?php use MarcusJaschen\Collmex\Client\Curl as CurlClient; use MarcusJaschen\Collmex\Request; use MarcusJaschen\Collmex\Type\Customer; // initialize HTTP client $collmexClient = new CurlClient('USER', 'PASSWORD', 'CUSTOMER_ID'); // create request object $collmexRequest = new Request($collmexClient); // create a record type; we create a customer with some basic fields $customer = new Customer( [ 'client_id' => '1', 'salutation' => 'Herr', 'forename' => 'Charly', 'lastname' => 'Cash', 'street' => 'Hauptstraße 12', 'zipcode' => '12222', 'city' => 'Berlin', 'inactive' => Customer::STATUS_ACTIVE, 'country' => 'DE', 'phone' => '+49300000000', 'email' => 'cash@example.org', 'output_medium' => Customer::OUTPUT_MEDIUM_EMAIL, ] ); // send HTTP request and get response object $collmexResponse = $collmexRequest->send($customer->getCsv()); if ($collmexResponse->isError()) { echo 'Collmex error: ' . $collmexResponse->getErrorMessage() . '; Code=' . $collmexResponse->getErrorCode() . PHP_EOL; } else { $newObject = $collmexResponse->getFirstRecord(); echo 'New Collmex customer ID=' . $newObject->new_id . PHP_EOL; $records = $collmexResponse->getRecords(); foreach ($records as $record) { // contains one NewObject object and the Message object(s) var_dump($record->getData()); } }
Notes
Collmex expects all strings encoded in code page 1252 (Windows) while the Collmex PHP SDK expects all inputs as UTF-8 and outputs everything as UTF-8. The conversion of string encodings is done transparently with the forceutf8 library before sending a request to the Collmex API and after receiving the response from the API.
Development
Run code checks
To run checks and tests, it's the easiest to use the provided Composer scripts:
- lint PHP files for syntax errors:
composer ci:lint - run static analysis with Psalm and report
errors:
composer ci:psalm - run unit tests with PHPUnit:
composer ci:tests - check the code style with
PHP_CodeSniffer:
composer ci:sniff
To run all checks and tests at once, just use composer ci.
Of course, it's possible to use the test runners directly, e. g. for PHPUnit:
./vendor/bin/phpunit
Psalm:
./vendor/bin/psalm
Autoformat the code
You can use a Composer script to autoformat the code:
composer fix:php-cs