octava / symfony-json-schema-form
Clone of limenius/liform. Symfony json schema form is a library for serializing Symfony Forms into JSON schema.
Installs: 30 846
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 2
Forks: 0
Open Issues: 0
Requires
- php: >8.1
- symfony/form: ^6.4
- symfony/http-kernel: ^6.4
- symfony/serializer: ^6.4
- symfony/translation: ^6.4
- symfony/translation-contracts: ^3.4
- symfony/validator: ^6.4
Requires (Dev)
- friendsofphp/php-cs-fixer: ^3.72
- phpro/grumphp: ^2.11
- phpstan/phpstan: ^2.1
- phpunit/phpunit: ^10.5
README
It generates a JSON schema representation, that serves as documentation and can be used to validate your data and, if you want, to generate forms using a generator.
It can be used along with liform-react or json-editor, or any other form generator based on json-schema.
Installation
- Download the Bundle
composer require octava/symfony-json-schema-form
- Enable the Bundle
Usage
Serializing a form into JSON Schema:
$form = $this->createForm(CarType::class, $car, ['csrf_protection' => false]); $schema = json_encode($this->get('sjsfom')->transform($form));