Libraries tagged by Identity map

leibbrand-development/php-docker-client

0 Favers
23 Downloads

The Engine API is an HTTP API served by Docker Engine. It is the API the Docker client uses to communicate with the Engine, so everything the Docker client can do can be done with the API. Most of the client's commands map directly to API endpoints (e.g. `docker ps` is `GET /containers/json`). The notable exception is running containers, which consists of several API calls. # Errors The API uses standard HTTP status codes to indicate the success or failure of the API call. The body of the response will be JSON in the following format: ``` { "message": "page not found" } ``` # Versioning The API is usually changed in each release, so API calls are versioned to ensure that clients don't break. To lock to a specific version of the API, you prefix the URL with its version, for example, call `/v1.30/info` to use the v1.30 version of the `/info` endpoint. If the API version specified in the URL is not supported by the daemon, a HTTP `400 Bad Request` error message is returned. If you omit the version-prefix, the current version of the API (v1.41) is used. For example, calling `/info` is the same as calling `/v1.41/info`. Using the API without a version-prefix is deprecated and will be removed in a future release. Engine releases in the near future should support this version of the API, so your client will continue to work even if it is talking to a newer Engine. The API uses an open schema model, which means server may add extra properties to responses. Likewise, the server will ignore any extra query parameters and request body properties. When you write clients, you need to ignore additional properties in responses to ensure they do not break when talking to newer daemons. # Authentication Authentication for registries is handled client side. The client has to send authentication details to various endpoints that need to communicate with registries, such as `POST /images/(name)/push`. These are sent as `X-Registry-Auth` header as a [base64url encoded](https://tools.ietf.org/html/rfc4648#section-5) (JSON) string with the following structure: ``` { "username": "string", "password": "string", "email": "string", "serveraddress": "string" } ``` The `serveraddress` is a domain/IP without a protocol. Throughout this structure, double quotes are required. If you have already got an identity token from the [`/auth` endpoint](#operation/SystemAuth), you can just pass this instead of credentials: ``` { "identitytoken": "9cbaf023786cd7..." } ```

Go to Download


se7enxweb/bcgmapslocation

1 Favers
1 Downloads

eZ Publish Legacy extension which provides a simple solution for storing latitude / longitude points with-in a object by using Google Maps to identify and mark location positions on map using a postal address. Great for smart developers!

Go to Download


brookinsconsulting/bcgmapslocation

2 Favers
8 Downloads

eZ Publish Legacy extension which provides a simple solution for storing latitude / longitude points with-in a object by using Google Maps to identify and mark location positions on map using a postal address. Great for smart developers!

Go to Download


vlucas/spot2

607 Favers
372825 Downloads

Simple DataMapper built on top of Doctrine DBAL

Go to Download


rekalogika/mapper

26 Favers
12855 Downloads

An object mapper for PHP and Symfony. Maps an object to another object. Primarily used for transforming an entity to a DTO and vice versa.

Go to Download


analogue/orm

635 Favers
46187 Downloads

An intuitive Data Mapper ORM for PHP and Laravel

Go to Download


doctrine/search

275 Favers
56014 Downloads

ElasticSearch and Solr entity mapping library

Go to Download


islandora/fedora-entity-mapper

0 Favers
206796 Downloads

Drupal Fedora Entity Mapper

Go to Download


kassko/data-mapper

13 Favers
33355 Downloads

A mapper which gives a lot of features to representate some raw data like objects

Go to Download


tatter/relations

87 Favers
15857 Downloads

Entity relationships for CodeIgniter 4

Go to Download


bowlofsoup/cake-dto-mapper

2 Favers
22551 Downloads

Map a CakePHP entity into a DTO

Go to Download


damianociarla/dynamic-discriminator-map-bundle

12 Favers
35881 Downloads

DCSDynamicDiscriminatorMapBundle simplifies the use of Doctrine Single Table Inheritance mapping strategy in Symfony2.

Go to Download


joschi127/doctrine-entity-override-bundle

6 Favers
119525 Downloads

Symfony bundle which allows to override entities by using inheritance

Go to Download


falseclock/dbd-php-entity

6 Favers
5490 Downloads

DTO like library to fetch any data in an Object-Oriented manner (ORM)

Go to Download


dittto/doctrine-entity-factories

3 Favers
4882 Downloads

Allows doctrine to pull entities from factories instead of just reflection

Go to Download


<< Previous Next >>