hugosoltys/fitz-bundle

Browse and install all the bundles you need in your Symfony application in a few seconds.


Keywords
symfony, bundle, install, fitz
License
MIT

Documentation

FitzBundle

Browse and install all the bundles you need in your Symfony application in a few seconds.

Installation

Open a terminal and type

$ composer require --dev hugosoltys/fitz-bundle

Enabling the bundle

Add the following line in your bundles.php file

<?php

return [
    // ...
    HugoSoltys\FitzBundle\FitzBundle::class => ['dev' => true],
];

Configuration

Allow the automation of Composer packages configuration via Symfony Flex with the following command.

composer config extra.symfony.allow-contrib true

Import the bundle routing

# config/routes/dev/fitz.yaml
fitz:
  resource: "@FitzBundle/Resources/config/routing.xml"

Configuring the bundle

# config/packages/dev/fitz.yaml
fitz:
  composer_path: '/path/to/composer'
  queue_file_path: '%kernel.project_dir%/vendor/hugosoltys/fitz-bundle'

Usage

Go to this page http://localhost/fitz/install

  • Choose the bundles you want to install then press the Install button.
  • Open a terminal and run the following command bin/console fitz:install

Contributing

If you want to add a bundle to the catalog, feel free to submit a pull request.

Troubleshooting

If you choose to install many bundles at once, you may encounter memory limit issues. If that is the case, please have a look here.