Download the PHP package aharen/language without Composer

On this page you can find all versions of the php package aharen/language. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package language

Language

Multi language for Laravel 5.3+


Installations

composer require aharen/language

Configuration

Add the service provider to providers array in config/app.php

aharen\Language\LanguageServiceProvider::class,

Add the facade to aliases array in config/app.php

'Language' => 'aharen\Language\Facades\Language::class',

Run vendor:publish artisan command to publish the database migration file and the default seeder

php artisan vendor:publish

Now add the DefaultLanguageSeeder to database/DatabaseSeeder.php

$this->call(DefaultLanguageSeeder::class);

You might need to run composer dumpautoload for the seeder to start working

Optional The provided seeder will create English as the default language but you can change the seeder to any language you like.

In addition you will have to update locale and fallback_locale in config/app.php to your desired default language, since the package uses these to maintain set locale and default locale.

This will enable the use of Laravels default localization methods and directives such as 'echo trans('messages.welcome');and@lang('messages.welcome'). You can store your translations in the defaultresources/lang` directory.

Setup

You should add a route prefix to your routes in one of the following ways:

  1. In your routes file to the route group

    Route::group(['prefix' => \App::getLocale()], function () {
      // your routes here
    });
  2. Or you can modify mapWebRoutes() method in App\RouteServiceProvider as follows:

    Route::group([
        'middleware' => 'web',
        'namespace'  => $this->namespace,
        'prefix'     => \App::getLocale(),
    ], function ($router) {
        require base_path('routes/web.php');
    }); 

All versions of language with dependencies

PHP Build Version
Package Version
Requires php Version >=5.4.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package aharen/language contains the following files

Loading the files please wait ....