8000 GitHub - Laravel-Lang/http-statuses at 1.x
[go: up one dir, main page]

Skip to content

Laravel-Lang/http-statuses

 
 

Repository files navigation

Laravel Lang: HTTP Statuses

List of 77 languages for HTTP statuses

Stable Version Unstable Version Total Downloads License

Installation

To get the latest version of Laravel Lang: HTTP Statuses library, simply require the project using Composer:

$ composer require laravel-lang/http-statuses --dev

Instead, you may of course manually update your require block and run composer update if you so choose:

{
    "require": {
        "laravel-lang/http-statuses": "^1.0"
    }
}

Using

To install files from this repository into your project, you need to install the andrey-helldar/laravel-lang-publisher version ^10.1 and above and specify the namespace of this project in its configuration.

For example:

// config/lang-publisher.php

<?php

return [
    // ...

    /*
     * Determines from which packages to synchronize localization files.
     */

    'plugins' => [
        \LaravelLang\HttpStatuses\Provider::class,
    ],
];
0