Libraries tagged by schema generation

leibbrand-development/php-docker-client

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


krisnaxyoga/krisna-crud-gen

1 Favers
20 Downloads

Laravel Portable CRUD Engine — Single Source Schema for Admin UI + REST API.

Go to Download


julio/capyrel

0 Favers
22 Downloads

Laravel schema intelligence — interactive project wizard (capyrel:new) + existing-DB scaffold: models, controllers, routes, API resources, tests, factories, OpenAPI, TypeScript, and more.

Go to Download


jonathanlight/meta-entity-builder-bundle

1 Favers
6 Downloads

Symfony bundle that generates Doctrine entities from YAML schemas with smart update detection, custom code preservation, and automatic backups

Go to Download


isproject/framework

0 Favers
3 Downloads

A Laravel teaching framework for Information Systems: CRUD scaffolding generated from your database schema, with RBAC, an audit trail, settings, an in-app manual and a self-hosted design system.

Go to Download


io4n/yii2-dump

0 Favers
2805 Downloads

Generate the schema from an existing database

Go to Download


hallerweb/prioritize-php-client

0 Favers
3 Downloads

REST API of Prioritize, a resource, project and IoT orchestration platform. All endpoints live under /api/v1. From 1.0.0 on this REST surface is the stable public contract (SemVer); the Vaadin admin GUI and its @Route URLs are an implementation detail and NOT part of that promise. A few areas are marked 'experimental' in their schema and may still change within the 1.x line.

Go to Download


esempla/yii2tech-dump-migration

0 Favers
209 Downloads

Generate the schema from an existing database

Go to Download


eril/schemage

1 Favers
2 Downloads

Schema-first database migration engine for PHP.

Go to Download


digital-drifter/laravel-cli-seeder

0 Favers
12 Downloads

Generate schema based test data from the cli.

Go to Download


decorate/laravel-table-document

0 Favers
4 Downloads

Laravel database table documentation generator with Mermaid ER diagram support

Go to Download


alexanderallen/panettone

2 Favers
10 Downloads

A lightweight PHP type generator for Open API (formerly Swagger)

Go to Download


ai-native/laravel

0 Favers
1 Downloads

Laravel AI-Native API Framework - Générez des APIs Laravel complètes à partir de schémas JSON

Go to Download


blackfyre/json-ld

0 Favers
1757 Downloads

Extremely simple JSON-LD markup generator.

Go to Download


apiverve/colorpalette

0 Favers
0 Downloads

Color Palette is a powerful tool for generating harmonious color palettes. Generate color schemes (mono, contrast, triade, tetrade, analogic) with accessibility data, CSS exports, and palette images.

Go to Download


<< Previous Next >>