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: 2024-11-23 20:26:07 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, ]