Skip to content

Latest commit

 

History

History
64 lines (42 loc) · 1.71 KB

README.md

File metadata and controls

64 lines (42 loc) · 1.71 KB

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,
    ],
];