bors/font-awesome

There is no license information available for the latest version (v5.0.10.0) of this package.

This package's canonical repository appears to be gone and the package has been frozen as a result. Email us for help if needed.

Installs: 172

Dependents: 3

Suggesters: 0

Security: 0

Stars: 0

Watchers: 2

Forks: 0

Open Issues: 0

pkg:composer/bors/font-awesome

v5.0.10.0 2018-04-21 11:44 UTC

This package is auto-updated.

Last update: 2023-02-10 19:12:50 UTC


README

Font Awesome toolkit support for BORS© framework.

# To use CDN-version
composer require bors/font-awesome

# To use local asset version need also:
composer require bower-asset/font-awesome

Local or CDN version detects automatically via bower-asset/font-awesome package install.

Call \B2\FontAwesome::load(); in pre_show() method on any view or config.

namespace \MyApp;

class View extends \B2\View
{
	function pre_show()
	{
		\B2\FontAwesome::load();
		return parent::pre_show();
	}
}