hnd/sf-form

Symfony Form integration for Laravel 5

v0.1.7 2017-06-06 07:06 UTC

This package is not auto-updated.

Last update: 2024-04-27 16:42:20 UTC


README

SensioLabsInsight

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,
    ]

Quick start