craue / formflow-demo-bundle
Example code showcasing the features of CraueFormFlowBundle.
Installs: 6 344
Dependents: 0
Suggesters: 0
Security: 0
Stars: 27
Watchers: 3
Forks: 12
Open Issues: 2
Type:symfony-bundle
Requires
- craue/formflow-bundle: ~3.6@dev
- doctrine/annotations: ^1.13
- doctrine/orm: ^2.5.2
- symfony/config: ~4.4|~5.3|^6
- symfony/dependency-injection: ~4.4|~5.3|^6
- symfony/event-dispatcher: ~4.4|~5.3|^6
- symfony/form: ~4.4|~5.3|^6
- symfony/framework-bundle: ~4.4|~5.3|^6
- symfony/http-foundation: ~4.4|~5.3|^6
- symfony/http-kernel: ~4.4|~5.3|^6
- symfony/intl: ~4.4|~5.3|^6
- symfony/options-resolver: ~4.4|~5.3|^6
- symfony/routing: ~4.4|~5.3|^6
- symfony/translation: ~4.4|~5.3|^6
- symfony/validator: ~4.4|~5.3|^6
Requires (Dev)
- craue/translations-tests: ^1.1
- phpunit/phpunit: ^9.5
- symfony/asset: ~4.4|~5.3|^6
- symfony/browser-kit: ~4.4|~5.3|^6
- symfony/css-selector: ~4.4|~5.3|^6
- symfony/mime: ~4.4|~5.3|^6
- symfony/phpunit-bridge: ^6
- symfony/security-bundle: ~4.4|~5.3|^6
- symfony/twig-bundle: ~4.4|~5.3|^6
README
CraueFormFlowDemoBundle contains the code used by http://craue.de/symfony-playground/en/CraueFormFlow/, a live demo showcasing the features of CraueFormFlowBundle.
Take a branch of CraueFormFlowDemoBundle matching the version of CraueFormFlowBundle you're using.
Installation
Get the bundle
Let Composer download and install the bundle by running
composer require craue/formflow-demo-bundle:@dev
in a shell.
Enable the bundle
If you don't use Symfony Flex, register it manually:
// in config/bundles.php return [ // ... Craue\FormFlowDemoBundle\CraueFormFlowBundle::class => ['all' => true], Craue\FormFlowDemoBundle\CraueFormFlowDemoBundle::class => ['all' => true], ];
Or, for Symfony 3.4:
// in app/AppKernel.php public function registerBundles() { $bundles = [ // ... new Craue\FormFlowBundle\CraueFormFlowBundle(), new Craue\FormFlowBundle\CraueFormFlowDemoBundle(), ]; // ... }
Add the routes
# in config/routes.yaml CraueFormFlowDemoBundle: resource: '@CraueFormFlowDemoBundle/Controller/' type: annotation
Usage
Start your server:
symfony serve
Go to the demo page:
https://127.0.0.1:8000/CraueFormFlow/