contao-bootstrap / grid
Bootstrap grid component
Fund package maintenance!
dmolineus
contao-bootstrap.de/mitmachen.html
Installs: 69 332
Dependents: 2
Suggesters: 1
Security: 0
Stars: 4
Watchers: 2
Forks: 12
Open Issues: 8
Type:contao-bundle
Requires
- php: ^7.4 || ^8.0
- ext-dom: *
- ext-pdo: *
- contao-bootstrap/core: ^2.0
- contao-community-alliance/meta-palettes: ^2.0
- contao/core-bundle: ^4.9
- doctrine/dbal: ^2.11 || ^3.3
- menatwork/contao-multicolumnwizard-bundle: ^3.4
- netzmacht/contao-toolkit: ^3.7
- 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
- symfony/routing: ^4.4 || ^5.4
- symfony/security-core: ^4.4 || ^5.4
- symfony/translation-contracts: ^1.1 || ^2.0
Requires (Dev)
- contao/manager-plugin: ^2.0
- contao/news-bundle: ^4.4
- doctrine/coding-standard: ^9.0
- phpcq/coding-standard: ^2.1.2
- phpcq/plugin-api: 1.x-dev
- phpcq/runner-bootstrap: 1.x-dev
Suggests
- contao/news-bundle: Use grid in news list and news archive modules
Conflicts
- dev-develop / 2.5.x-dev
- dev-master / 2.4.x-dev
- 2.4.3
- 2.4.2
- 2.4.1
- 2.4.0
- 2.3.1
- 2.3.0
- 2.2.3
- 2.2.2
- 2.2.1
- 2.2.0
- 2.1.2
- 2.1.1
- 2.1.0
- 2.0.8
- 2.0.7
- 2.0.6
- 2.0.5
- 2.0.4
- 2.0.3
- 2.0.2
- 2.0.1
- 2.0.0
- 2.0.0-beta3
- 2.0.0-beta2
- 2.0.0-beta1
- 2.0.0-alpha1
- 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-hotfix/2.2.3
- dev-feature/repeat-image-size
This package is auto-updated.
Last update: 2024-10-09 18:12:41 UTC
README
This extension provides Bootstrap 4 grid tools for Contao CMS.
Features
- Manage grid definition in your theme settings
- Content elements
- Form elements
- Grid module
- Import/Export with your theme settings
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/grid~2.0 # Using composer directly $ php composer.phar require contao-bootstrap/grid~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 Contao\CoreBundle\HttpKernel\Bundle\ContaoModuleBundle('multicolumnwizard', $this->getRootDir()), new Netzmacht\Contao\Toolkit\Bundle\NetzmachtContaoToolkitBundle(), new ContaoBootstrap\Core\ContaoBootstrapCoreBundle(), new ContaoBootstrap\Grid\ContaoBootstrapGridBundle() ]; } }