Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sherlockode/advanced-form-bundle
Symfony Bundle with form components
https://github.com/sherlockode/advanced-form-bundle
Last synced: about 4 hours 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 (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2023-11-14T13:22:04.000Z (about 1 year ago)
- Last Synced: 2024-03-15T01:25:32.730Z (8 months ago)
- Language: PHP
- Homepage:
- Size: 219 KB
- Stars: 0
- Watchers: 6
- 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)