contao-bootstrap / layout
Bootstrap layout integration in Contao
Fund package maintenance!
dmolineus
contao-bootstrap.de/mitmachen.html
Installs: 54 110
Dependents: 1
Suggesters: 0
Security: 0
Stars: 2
Watchers: 2
Forks: 5
Open Issues: 8
Type:contao-bundle
Requires
- php: ^7.4 || ^8.0
- contao-bootstrap/core: ^2.0
- contao/core-bundle: ^4.9
- doctrine/dbal: ^2.11 || ^3.3
- netzmacht/contao-toolkit: ^3.7
- netzmacht/html: ^2.0.2
- symfony/config: ^4.4 || ^5.4
- symfony/dependency-injection: ^4.4 || ^5.4
- symfony/http-kernel: ^4.4 || ^5.4
Requires (Dev)
- contao/manager-plugin: ^2.0
- doctrine/coding-standard: ^9.0.
- netzmacht/phpspec-phpcq-plugin: *@dev
- phpcq/coding-standard: ^2.1.2
- phpcq/plugin-api: 1.x-dev
- phpcq/runner-bootstrap: 1.x-dev
- phpspec/phpspec: ^6.3.0 || ^7.0
Conflicts
- dev-master / 2.1.x-dev
- dev-develop / 2.1.x-dev
- 2.1.1
- 2.1.0
- 2.0.4
- 2.0.3
- 2.0.2
- 2.0.1
- 2.0.0
- 2.0.0-beta4
- 2.0.0-beta3
- 2.0.0-beta2
- 2.0.0-beta1
- 2.0.0-alpha2
- 2.0.0-alpha1
- 1.0.2
- 1.0.1
- 1.0.0
- 1.0.0-rc1
- 1.0.0-beta3
- 1.0.0-beta2
- 1.0.0-beta1
- dev-dependabot/composer/nyholm/psr7-1.7.0
- dev-dependabot/composer/symfony/http-kernel-5.4.20
- dev-dependabot/composer/symfony/security-bundle-5.4.20
- dev-dependabot/composer/twig/twig-3.4.3
- dev-dependabot/composer/contao/core-bundle-4.13.3
This package is auto-updated.
Last update: 2024-10-23 12:41:36 UTC
README
This extension provides Bootstrap integration into Contao.
Contao-Bootstrap is a modular integration. The layout component allows to define a grid based layout using the backend layout editor.
Features
- Grid based layouts
- Auto replace defined css classes
- Auto replace image and table classes
Changelog
See changelog
Requirements
- PHP 7.1
- Contao ~4.4
Install
Managed edition
When using the managed edition it's pretty simple to install the package. Just search for the package in the Contao Manager and install it. Alternatively you can use the CLI.
# Using the contao manager $ php contao-manager.phar.php composer require contao-bootstrap/layout~2.0@beta # Using composer directly $ php composer.phar require contao-bootstrap/layout~2.0@beta
Symfony application
If you use Contao in a symfony application without contao/manager-bundle, you have to register following bundles manually:
class AppKernel { public function registerBundles() { $bundles = [ // ... new Contao\CoreBundle\HttpKernel\Bundle\ContaoModuleBundle('metapalettes', $this->getRootDir()), new ContaoBootstrap\Core\ContaoBootstrapCoreBundle(), new Netzmacht\Html\NetzmachtHtmlBundle(), new ContaoBootstrap\Layout\ContaoBootstrapLayoutBundle(), ]; } }