This bundle provides the excellent fugue icon set from Yusuke Kamiyamane, which can be found at http://p.yusukekamiyamane.com/.
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.
Enable the bundle in the kernel:
<?php
// app/AppKernel.php
public function registerBundles()
{
$bundles = array(
// ...
new Brainbits\FugueIconsBundle\BrainbitsFugueIconsBundle(),
);
}
This step is only necessary after adding, afterwards the assets will be installed on composer update.
$ php app/console assets:install
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