Download the PHP package jooservices/form-builder without Composer

On this page you can find all versions of the php package jooservices/form-builder. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package form-builder

JOOservices Form Builder

CI PHP Version Packagist Version Codecov OpenSSF Scorecard

jooservices/form-builder is a standalone PHP 8.5+ schema-driven form builder for JSON-defined forms. It parses form schemas, validates schema shape, renders semantic HTML, returns renderless config arrays, exposes asset manifests or safe asset tags, validates submitted values, normalizes submitted values, and supports repeaters, rich-text editor metadata, media input metadata, and generic file input metadata without coupling to Laravel, WordPress, Joomla, Symfony upload objects, PSR-7 uploads, or storage frameworks.

Install

Quick Start

JSON Schema Example

Render HTML

Editor fields render as safe <textarea> fallbacks with data-form-editor, data-form-editor-profile, and data-form-editor-config. Media fields render as standard <input type="file"> controls with optional drag/drop and preview containers driven by data attributes. File fields render as standard <input type="file"> controls with data-form-file, data-form-file-accept, data-form-file-max-files, and data-form-file-max-size-mb metadata, including repeater-safe names such as chapters[0][documents][].

Render Config

toConfigArray() returns a renderless structure for Blade, Vue, React, CLI previews, or custom UI adapters. Repeater items, editor metadata, media metadata, and file metadata are preserved in the config output.

Assets

Use the asset facade when the consuming application needs standalone CSS/JS metadata without framework coupling:

The manifest exposes css, js, inline_css, inline_js, features, and providers. TinyMCE is opt-in by schema usage and can be disabled or overridden:

If package_asset_mode is set to url without a usable package_asset_base_url, package helper assets are omitted instead of silently falling back to inline output.

Use renderAssetTags() for simple PHP apps. In WordPress Management or any host application, prefer reading the manifest and enqueueing or serving those assets in the application layer.

File Versus Media

Validate Submission

Submission validation returns structured ValidationErrorData objects with path, message, code, and context. Repeater paths follow dot notation such as chapters.0.title. File and media validation accept metadata-style values, scalar references, or lists according to field shape, but they do not depend on framework upload classes.

Repeater Behavior

Custom Fields

Register a custom field adapter when you need application-specific field behavior:

Or use the convenience registration API when you already have custom renderer, validator, and normalizer objects:

Security Notes

What This Package Does Not Do

WordPress Management Guidance

Docs And AI Guidance


All versions of form-builder with dependencies

PHP Build Version
Package Version
Requires php Version >=8.5
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package jooservices/form-builder contains the following files

Loading the files please wait ...