Package Data | |
---|---|
Maintainer Username: | hoangnd |
Maintainer Contact: | contact@hoangnd.me (Hoang Nguyen) |
Package Create Date: | 2016-05-10 |
Package Last Update: | 2017-06-06 |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-23 03:26:07 |
Package Statistics | |
---|---|
Total Downloads: | 84 |
Monthly Downloads: | 1 |
Daily Downloads: | 0 |
Total Stars: | 0 |
Total Watchers: | 2 |
Total Forks: | 1 |
Total Open Issues: | 0 |
This integration based on Silex implementation of Symfony Form. This package also works out of the box with Twig & Doctrine
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,
]