Crinsane / LaravelGettext by Crinsane

Integrate the PHP Gettext library into Laravel 4
174
3
3
Package Data
Maintainer Username: Crinsane
Maintainer Contact: Rob_Gloudemans@hotmail.com (Rob Gloudemans)
Package Create Date: 2013-09-13
Package Last Update: 2014-02-03
Language: PHP
License: Unknown
Last Refreshed: 2024-05-10 15:09:52
Package Statistics
Total Downloads: 174
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 3
Total Watchers: 3
Total Forks: 1
Total Open Issues: 0

Work in Progress - Use at your own risk

Installation

Install the package through Composer. Edit your project's composer.json file by adding:

"require": {
	"laravel/framework": "4.0.*",
	"gloudemans/gettext": "dev-master"
}

Next, run the Composer update command from the Terminal:

composer update

Now all you have to do is add the service provider of the package. To do this open your app/config/app.php file.

Add a new line to the service providers array:

'Gloudemans\Gettext\GettextServiceProvider'