myparcelcom / json-schema-form-builder
A library that provides an object-oriented API for constructing forms, which can then be converted into a JSON Schema.
v1.0.0
2025-04-02 11:37 UTC
Requires
- php: >=8.4
- laravel/framework: >=12.0
- ramsey/uuid: ^4.7
Requires (Dev)
- fakerphp/faker: ^1.24
- mockery/mockery: ^1.6
- phpunit/phpunit: >=12.0
- roave/security-advisories: dev-latest
This package is auto-updated.
Last update: 2025-04-02 11:40:49 UTC
README
This library provides an object-oriented API for constructing forms, which can then be converted into a JSON Schema.
This package includes:
- Classes that can be used to outline simple forms.
- Functionality to render these forms into JSON Schema
PHP 8
The minimum PHP version is 8.4
. To update dependencies on a system without PHP 8 use:
docker run --rm --mount type=bind,source="$(pwd)",target=/app composer:2 composer update
Run tests
You can run the test through docker:
docker run -v $(pwd):/app --rm -w /app php:8.4-cli vendor/bin/phpunit