Libraries tagged by Domain Move

matthewbaggett/docker-api-php-client

0 Favers
5 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.43) is used. For example, calling `/info` is the same as calling `/v1.43/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


leibbrand-development/php-docker-client

0 Favers
22 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


juliusstoerrle/data-document-backup-contract

1 Favers
0 Downloads

Extensible PHP library to export domain data into a formatted document stored in a remote storage for backup purposes. This library contains the shared model that must be provided by a downstream project.

Go to Download


juampi92/phpstan-eloquent-bounded-context

0 Favers
2 Downloads

PHPStan rules that make sure your models are only being mutated from within its Domain.

Go to Download


grixu/passport-module-auth

0 Favers
520 Downloads

This package provides model, command & middleware to easily forbid access to certain modules(domains in DDD) when using Client Credentials Grant Tokens

Go to Download


twohill/silverstripe-homepagefordomain

13 Favers
1250 Downloads

Allows to designate a page anywhere in the tree as the homepage for a specific domain, overruling the usual homepage (which is identified by the 'home' URLSegment).

Go to Download


centralnic-reseller/idn-converter

0 Favers
1746 Downloads

PHP library to convert Domain Names correctly from IDN to Punycode, and vice-versa also offers TR46 processing.

Go to Download


dovereem/a2sp-cartalk-api-client

0 Favers
723 Downloads

API Client for the A2SP's "Voertuiginfo" API at domain cartalk.nl (https://a2sp.nl/diensten/software-leveranciers/voertuiginfo-api/)

Go to Download


silverstripe/homepagefordomain

13 Favers
4981 Downloads

Allows to designate a page anywhere in the tree as the homepage for a specific domain, overruling the usual homepage (which is identified by the 'home' URLSegment).

Go to Download


wexample/symfony-translations

0 Favers
159 Downloads

A translations service overrides to support translations files includes and multiple domains in Symfony translations

Go to Download


novum/domain-overheid

0 Favers
0 Downloads

Fake "De Nederlandse overheid" domain definition files

Go to Download


codem/silverstripe-domain-validation

0 Favers
105 Downloads

A set of fields, including editable userform fields to perform domain validation via DNS over HTTPS

Go to Download


michalkortas/webservicentlm

3 Favers
11 Downloads

Override default SoapClient class to connect webservice with NTLM Windows authentication

Go to Download


engine45/artisan

0 Favers
2 Downloads

Overriden Artisan make commands to utilize our Laravel Domain Driven Design starter.

Go to Download


loveduckie/silverstripe-well-known-validation

1 Favers
1 Downloads

A SilverStripe module for conveniently allowing administrators to validate the ownership of their website or domain name with other third-party services.

Go to Download


<< Previous Next >>