hnd / sf-form
Symfony Form integration for Laravel 5
Installs: 87
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 1
Open Issues: 0
pkg:composer/hnd/sf-form
Requires
- illuminate/session: ^5.0
- illuminate/support: ^5.0
- symfony/doctrine-bridge: ^3.0
- symfony/form: ^3.0
- symfony/intl: ^3.0
- symfony/security-csrf: ^3.0
- symfony/twig-bridge: ^3.0
- symfony/validator: ^3.0
This package is not auto-updated.
Last update: 2025-09-28 00:50:47 UTC
README
This integration based on Silex implementation of Symfony Form. This package also works out of the box with Twig & Doctrine
Documentation
For detailed documentation, please check this (WIP)
###Installation
{ "require": { "hnd/sf-form": "dev-master" } }
Run composer update
Publish configuration with php artisan vendor:publish --tag="config"
Then add Service provider to config/app.php
'providers' => [ // ... HND\SymfonyForm\ServiceProvider::class ]
And Facade (also in config/app.php
)
'aliases' => [ // ... 'FormFactory' => \HND\SymfonyForm\Facades\FormFactory::class, ]