webchemistry / form-factory
Installs: 721
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/webchemistry/form-factory
Requires
- php: >= 8.0
- nette/forms: ^3.0
Requires (Dev)
- nette/application: ^3.0
- nette/di: ^3.0
This package is auto-updated.
Last update: 2025-10-06 19:54:10 UTC
README
extensions: form.factory: WebChemistry\FormFactory\DI\FormFactoryExtension form.factory: factory: FormFactory
use WebChemistry\FormFactory\FormFactoryInterface; class FormService { private FormFactoryInterface $formFactory; public function __construct(FormFactoryInterface $formFactory) { $this->formFactory = $formFactory; } public function createForm() { $form = $this->formFactory->create(); // ... return $form; } }