brainbits/fugue-icons-bundle

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

Bundle including the fugue icon set.

3.5.6 2013-05-15 12:31 UTC

This package is auto-updated.

Last update: 2023-06-08 04:12:49 UTC


README

This bundle provides the excellent fugue icon set from Yusuke Kamiyamane, which can be found at http://p.yusukekamiyamane.com/.

Step 1: Download BrainbisFugueIconsBundle using composer

Add BrainbitsFugueIconsBundle in your composer.json:

{
    "require": {
        "brainbits/fugue-icons-bundle": "*"
    }
}

Now tell composer to download the bundle by running the command:

$ php composer.phar update brainbits/fugue-icons-bundle

Composer will install the bundle to your project's vendor/brainbits directory.

Step 2: Enable the bundle

Enable the bundle in the kernel:

<?php
// app/AppKernel.php

public function registerBundles()
{
    $bundles = array(
        // ...
        new Brainbits\FugueIconsBundle\BrainbitsFugueIconsBundle(),
    );
}

Step 3: Install assets

This step is only necessary after adding, afterwards the assets will be installed on composer update.

$ php app/console assets:install

Step 4: Use icons

The icon set is accessible through the uri

/bundles/brainbitsfugueicons/icons/fugue/16/*.png

Also, the bonus icons in size 24 and 32 are availabile under

/bundles/brainbitsfugueicons/icons/fugue/24/*.png
/bundles/brainbitsfugueicons/icons/fugue/32/*.png