PHPackages                             unimapper/flexibee - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Database &amp; ORM](/categories/database)
4. /
5. unimapper/flexibee

ActiveLibrary[Database &amp; ORM](/categories/database)

unimapper/flexibee
==================

Flexibee implementation for UniMapper

v1.2.2(10y ago)9265[1 issues](https://github.com/unimapper/flexibee/issues)MITPHPPHP &gt;=5.4.0

Since Jan 23Pushed 10y ago6 watchersCompare

[ Source](https://github.com/unimapper/flexibee)[ Packagist](https://packagist.org/packages/unimapper/flexibee)[ RSS](/packages/unimapper-flexibee/feed)WikiDiscussions master Synced 2mo ago

READMEChangelog (10)Dependencies (4)Versions (26)Used By (0)

UniMapper Flexibee extension
============================

[](#unimapper-flexibee-extension)

Flexibee API integration with [UniMapper](http://unimapper.github.io).

[![Build Status](https://camo.githubusercontent.com/fb9b3d5a76abd72328756ee12cac51a47c9cb9fe20eb92db47bf4171d17d8779/68747470733a2f2f7365637572652e7472617669732d63692e6f72672f756e696d61707065722f666c6578696265652e706e673f6272616e63683d6d6173746572)](http://travis-ci.org/unimapper/flexibee)

Usage
=====

[](#usage)

```
$config = [
    // Required
    "host" => "http://localhost:5434"
    "company" => "name"

    // Optional authentization
    "user" => ,
    "password" => ,

    // Optional SSL version
    "ssl_version" => 3
];
$adapter = new UniMapper\Flexibee\Adapter($config);

// Create new contacts
$response = $adapter->put("adresar.json", ["adresar" => ["sumCelkem" => ....]);

// Read every created contact detail
foreach ($response->results as $result) {
    $adapter->get("adresar/" . $result->id . ".json");
}
```

For more inromation see the docs on official [Flexibee](http://www.flexibee.eu) site.

Příklady z praxe
================

[](#příklady-z-praxe)

Takhle může být zadefinovaná evidence *objednavka-prijata* v plné kráse. Seznam všech lze najít například na

Entity
------

[](#entity)

```
