fontello api package for laravel 4.x
28
0
1
Package Data
Maintainer Username: derduesseldorf
Maintainer Contact: rheingestalter@gmail.com (Derduesseldorf)
Package Create Date: 2014-06-20
Package Last Update: 2014-06-25
Language: PHP
License: Unknown
Last Refreshed: 2024-05-03 03:05:40
Package Statistics
Total Downloads: 28
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 0
Total Watchers: 1
Total Forks: 0
Total Open Issues: 0

#Fontello API Package for Laravel A simple module for Laravel in early status.

##Usage This package gives you the ability to use fontello api directly in your laravel application.

###Basic Setup Require this package in your composer.json

"derduesseldorf/fontello" : "1.1.1.0"

After updating composer add the ServiceProvider to the providers in your app/config/app.php

"Derduesseldord\Fontello\FontelloServiceProvider"

Add the Facade to the aliases in app/config/app.php

"Fontello" => "Derduesseldorf\Fontello\FontelloFacade"

###Create basic directory structure

  • config.json
    the config.json will be placed in "public/assets/fontello"

  • Css files
    All css files will be placed in "public/assets/fontello/css"

  • Font files
    All font files will be placed in "public/assets/fontello/font"

  • Temp folder
    The temporary data will be placed in "public/uploads/"

Make sure to setup "public/assets" and "public/uploads"

##Examples Open "derduesseldorf/fontello/controllers/FontelloImportController" to see how fontello for Laravel works. You are free to choose where you want to place your app logic.