contao-bootstrap / core
Core of Contao Bootstrap extension
Fund package maintenance!
dmolineus
Installs: 79 214
Dependents: 16
Suggesters: 0
Security: 0
Stars: 16
Watchers: 7
Forks: 10
Open Issues: 5
Type:contao-bundle
Requires
- php: ^7.4 || ^8.0
- contao-community-alliance/meta-palettes: ^2.0
- contao/core-bundle: ^4.9
- symfony/config: ^4.4 || ^5.4
- symfony/dependency-injection: ^4.4 || ^5.4
- symfony/event-dispatcher-contracts: ^1.1 || ^2.0
- symfony/http-kernel: ^4.4 || ^5.4
- symfony/yaml: ^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
Suggests
- components/bootstrap: Bootstrap Components package
- twbs/bootstrap: Official Bootstrap package
Conflicts
- dev-master / 2.1.x-dev
- dev-develop / 2.1.x-dev
- 2.1.0
- 2.0.5
- 2.0.4
- 2.0.3
- 2.0.2
- 2.0.1
- 2.0.0
- 2.0.0-beta2
- 2.0.0-beta1
- 2.0.0-alpha5
- 2.0.0-alpha3
- 2.0.0-alpha2
- 2.0.0-alpha1
- 1.1.6
- 1.1.5
- 1.1.4
- 1.1.3
- 1.1.2
- 1.1.1
- 1.1.0
- 1.0.4
- 1.0.3
- 1.0.2
- 1.0.1
- 1.0.0
- 1.0.0-rc3
- 1.0.0-rc2
- 1.0.0-rc1
- 1.0.0-beta2
- 1.0.0-beta1
- dev-dependabot/composer/nyholm/psr7-1.7.0
- dev-dependabot/composer/symfony/security-bundle-5.4.22
- dev-dependabot/composer/symfony/http-kernel-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-22 00:09:25 UTC
README
This extension provides Bootstrap 4 integration into Contao.
Contao-Bootstrap is a modular integration. The core components provides the infrastructure for other components.
Features
- Bootstrap environment
- Config system
- Template pre and post render filters
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/core~2.0 # Using composer directly $ php composer.phar require contao-bootstrap/core~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 ContaoBootstrap\Core\ContaoBootstrapCoreBundle(), ]; } }