frgef / neo-page-builder-bundle
This package is a Symfony bundle allowing you to use a particular FormType (NeoPageBuilderType) in order to build complete frontend pages in the context of a CMS.
Installs: 1
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 0
Language:JavaScript
Requires
- php: >=8.2.0
- nesbot/carbon: >=3.3
- symfony/asset-mapper: >=7.0
- symfony/filesystem: >=7.0
- symfony/intl: >=7.0
- symfony/stimulus-bundle: >=2.16
- symfony/string: >=7.0
- symfony/translation: >=7.0
- symfony/twig-bundle: >=7.0
- symfony/uid: >=7.0
- twig/extra-bundle: ^2.12|^3.0
- twig/intl-extra: ^3.9
- twig/string-extra: ^3.10
- twig/twig: ^2.12|^3.0
Requires (Dev)
- friendsofphp/php-cs-fixer: ^3.54
- monolog/monolog: 1.*|2.*
- php-parallel-lint/php-var-dump-check: ^0.5.0
- phpstan/phpdoc-parser: ^1.25
- phpstan/phpstan-symfony: ^1.3
- phpunit/phpunit: ^9.5
Suggests
- php: PHP 8.0 or higher comes with attributes, a native replacement for annotations
- monolog/monolog: Allows to handle logs
This package is auto-updated.
Last update: 2024-10-24 21:12:08 UTC
README
This package is a Symfony allowing you to use a particular FormType (NeoPageBuilderType) in order to build complete frontend pages in the context of a CMS.
When to use this bundle ?
Documentation
Installation
With Symfony Flex (recommended):
composer require frgef/neo-page-builder-bundle
You're ready to use AliceBundle, and can jump to the next section!
Without Flex, you will have to register the bundle accordingly in config/bundles.php
:
<?php return [ Symfony\Bundle\FrameworkBundle\FrameworkBundle::class => ['all' => true], // ... NeoPageBuilder\NeoPageBuilderBundle::class => ['all' => true], ];
Configure the bundle to your needs, for example:
Basic usage
See more.
Next chapter: Advanced usage