hnd / sf-form
Symfony Form integration for Laravel 5
v0.1.7
2017-06-06 07:06 UTC
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: 2026-03-29 03:46:44 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, ]