hugosoltys/fitz-bundle

This package is abandoned and no longer maintained. No replacement package was suggested.

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

1.0.3 2019-08-07 14:14 UTC

This package is auto-updated.

Last update: 2020-01-17 08:08:38 UTC


README

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/hugosoltys_fitz.yaml
fitz:
  resource: "@FitzBundle/Resources/config/routing.xml"

Configuring the bundle

# config/packages/dev/hugosoltys_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.