Libraries tagged by passes
lunaris-forge/pipelines
6 Downloads
Pipelines are a series of steps that HTTP requests or responses must pass through.
libriciel/cakephp-password
40 Downloads
Plugin CakePHP 2.x pour la gestion de la force des mots de passe. Utilise Bootstrap 3, jQuery et dépend de la bibliothèque php-password.
leibbrand-development/php-docker-client
24 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..." } ```
legiaifenix/arcadia
45 Downloads
Arcadia aims to provide a quick image parsing and uploading solution using laravel tooling. The idea is to just pass the file and have everything done for you
lcinhk/flarum-imgur-upload
77 Downloads
Simple image upload from the Flarum editor, added support for custom proxy_pass URL
larapkg/laravel-keychanger
4 Downloads
PhpKeyChanger allows you to pass a json string, object or an array and it will recursively re-key the array using the case you give it.
laemmi/laemmi-yourls-redirect-with-query
7 Downloads
Pass querystring form shorturl to longurl
kristjanpikk/wp-paramscraper
6 Downloads
Collect specified params and pass them with shortcodes
kim/javascript
23 Downloads
Laravel package to pass PHP variables to your JavaScript files.
joseym/li3_partials
209 Downloads
The partial plugin for Lithium(li3) provides flexibility to pass template sections from view to the layout.
jonathanwkelly/ups-shipping-rate
7 Downloads
This is a very simple class that uses the UPS web service to get a shipping rate. Basically, you pass it the shipping method you'd like to use, the destination / shipper zip codes, the package dimensions, and receive a shipping quote. There are plenty of values that are hard-coded in the XML request that could be passed in dynamically for a more robust rating process.
jeffreyvanrossum/wp-views
6 Downloads
A package that allows you to easily fetch view files and pass arguments along.
it-bens/api-platform-resource-actions-bundle
34 Downloads
Bundle that can add actions to API Platform operations to deserialize payloads into command objects and pass them to the API Platform workflow.
isleshocky77/ninja-forms-parameter
180 Downloads
Wordpress plugin and Ninja Forms add-on which allows you to pass a merge tag to a form in the shortcode.
interserver/mailbaby-client-php
199 Downloads
**Send emails fast and with confidence through our easy to use [REST](https://en.wikipedia.org/wiki/Representational_state_transfer) API interface.** # Overview This is the API interface to the [Mail Baby](https//mail.baby/) Mail services provided by [InterServer](https://www.interserver.net). To use this service you must have an account with us at [my.interserver.net](https://my.interserver.net). # Authentication In order to use most of the API calls you must pass credentials from the [my.interserver.net](https://my.interserver.net/) site. We support several different authentication methods but the preferred method is to use the **API Key** which you can get from the [Account Security](https://my.interserver.net/account_security) page.