contao-bootstrap / panel
Bootstrap panel component for Contao CMS
Fund package maintenance!
dmolineus
contao-bootstrap.de/mitmachen.html
Installs: 47 687
Dependents: 1
Suggesters: 0
Security: 0
Stars: 0
Watchers: 3
Forks: 3
Open Issues: 3
Type:contao-bundle
Requires
- php: ^7.4 || ^8.1
- contao-bootstrap/core: ^2.0
- contao-community-alliance/meta-palettes: ^1.11 || ^2.0
- contao/core-bundle: ^4.9
- netzmacht/contao-toolkit: ^3.8
- symfony/config: ~4.4 || ^5.4
- symfony/dependency-injection: ~4.4 || ^5.4
- symfony/http-foundation: ~4.4 || ^5.4
- symfony/http-kernel: ~4.4 || ^5.4
Requires (Dev)
- contao/manager-plugin: ^2.1
- doctrine/coding-standard: ^9.0
- phpcq/coding-standard: ^2.1.2
- phpcq/runner-bootstrap: 1.x-dev
Conflicts
- contao/manager-plugin: <2.1 || >= 3.0
- dev-develop / 2.3.x-dev
- dev-master / 2.2.x-dev
- 2.2.0
- 2.1.2
- 2.1.1
- 2.1.0
- 2.0.4
- 2.0.3
- 2.0.2
- 2.0.1
- 2.0.0
- 2.0.0-beta1
- 1.0.4
- 1.0.3
- 1.0.2
- 1.0.1
- 1.0.0
- 1.0.0-rc2
- 1.0.0-rc1
- 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-hotfix/2.1.2
This package is auto-updated.
Last update: 2024-10-22 00:01:11 UTC
README
This extension provides Bootstrap integration into Contao.
Contao-Bootstrap is a modular integration. This extension provides the bootstrap panel into Contao. It uses the default accordion element of Contao and extends it with an accordeon group element.
Changelog
See changelog
Requirements
- PHP ^7.4 || ^8.0
- Contao ^4.9
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/panel~2.0 # Using composer directly $ php composer.phar require contao-bootstrap/panel~2.0
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 Netzmacht\Contao\Toolkit\Bundle\NetzmachtContaoToolkitBundle(), new ContaoBootstrap\Core\ContaoBootstrapCoreBundle(), new ContaoBootstrap\Grid\ContaoBootstrapPanelBundle() ]; } }