| 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: | 2025-12-11 03:23:06 |
| Package Statistics | |
|---|---|
| Total Downloads: | 87 |
| Monthly Downloads: | 0 |
| Daily Downloads: | 0 |
| Total Stars: | 0 |
| Total Watchers: | 1 |
| 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,
]