hnd/sf-form

Symfony Form integration for Laravel 5

Installs: 87

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 1

Open Issues: 0

pkg:composer/hnd/sf-form

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

This package is not auto-updated.

Last update: 2025-09-28 00:50:47 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