2017 © Pedro Peláez
 

library sf-form

Symfony Form integration for Laravel 5

image

hnd/sf-form

Symfony Form integration for Laravel 5

  • Tuesday, June 6, 2017
  • by hoangnd
  • Repository
  • 1 Watchers
  • 0 Stars
  • 75 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 1 Forks
  • 0 Open issues
  • 5 Versions
  • 6 % Grown

The README.md

Laravel 5 - Symfony Form integration

SensioLabsInsight, (*1)

This integration based on Silex implementation of Symfony Form. This package also works out of the box with Twig & Doctrine, (*2)

Documentation

For detailed documentation, please check this (WIP), (*3)

Installation

``` json { "require": { "hnd/sf-form": "dev-master" } }, (*4)


Run `composer update` Publish configuration with `php artisan vendor:publish --tag="config"` Then add Service provider to `config/app.php` ``` php 'providers' => [ // ... HND\SymfonyForm\ServiceProvider::class ]

And Facade (also in config/app.php), (*5)

``` php 'aliases' => [ // ... 'FormFactory' => \HND\SymfonyForm\Facades\FormFactory::class, ], (*6)

```, (*7)

Quick start

The Versions