https://github.com/sherlockode/advanced-form-bundle
Symfony Bundle with form components
https://github.com/sherlockode/advanced-form-bundle
Last synced: 11 months ago
JSON representation
Symfony Bundle with form components
- Host: GitHub
- URL: https://github.com/sherlockode/advanced-form-bundle
- Owner: sherlockode
- License: mit
- Created: 2017-11-29T17:07:01.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2023-11-14T13:22:04.000Z (over 2 years ago)
- Last Synced: 2025-06-09T07:59:00.163Z (about 1 year ago)
- Language: PHP
- Homepage:
- Size: 219 KB
- Stars: 1
- Watchers: 5
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Sherlockode Advanced Form Bundle
================================
Powerful Symfony form components
## Prerequisites
This bundle requires Symfony 3.4+ and jQuery.
## Installation
### Step 1: Install SherlockodeAdvancedFormBundle
The best way to install this bundle is to rely on [Composer](https://getcomposer.org/):
```bash
$ composer require sherlockode/advanced-form-bundle
```
### Step 2: Enable the bundle
Enable the bundle in the kernel
```php
['all' => true],
];
```
### Step 3: Configure the bundle
Import the routing in `config/routes.yml`
```yaml
sherlockode_advanced_form:
resource: "@SherlockodeAdvancedFormBundle/Resources/config/routing/all.xml"
```
### Step 4: Publish assets
You may use Webpack to import the JavaScript files or use the `assets` command.
```bash
$ php bin/console assets:install --symlink public
```
## Next steps
### Ajax uploader
[Create a single file upload form](Resources/doc/single_file_upload.md)
[Use the temporary upload mode](Resources/doc/temporary_upload.md)
[Multiple files upload form](Resources/doc/multiple_files_upload.md)
[Options overview](Resources/doc/options_overview.md)
### Dependent entity form type
[Overview](Resources/doc/dependent_entity.md)