Download the PHP package danielmlozano/laravel-vue-i18n-generator without Composer

On this page you can find all versions of the php package danielmlozano/laravel-vue-i18n-generator. 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 laravel-vue-i18n-generator

About

This is a fork from https://github.com/martinlindhe/laravel-vue-i18n-generator, created to give Laravel 8 compatibility and keep the maintenance of the package.

Laravel package that allows you to share your Laravel localizations with your vue front-end, using vue-i18n or vuex-i18n.

Install the package

In your project:

php artisan vendor:publish --provider="Danielmlozano\VueInternationalizationGenerator\GeneratorProvider"

npm i --save vue-i18n

yarn add vue-i18n

php artisan vue-i18n:generate js import Vue from 'vue'; import VueInternationalization from 'vue-i18n'; import Locale from './vue-i18n-locales.generated';

Vue.use(VueInternationalization);

const lang = document.documentElement.lang.substr(0, 2); // or however you determine your current app locale

const i18n = new VueInternationalization({ locale: lang, messages: Locale });

const app = new Vue({ el: '#app', i18n, components: { ... } } js import Vue from 'vue'; import VueInternationalization from 'vue-i18n'; import Locales from './vue-i18n-locales.generated.js';

Vue.use(VueInternationalization);

Vue.config.lang = 'en';

Object.keys(Locales).forEach(function (lang) { Vue.locale(lang, Locales[lang]) });

...

npm i --save vuex-i18n

yarn add vuex-i18n vuex diff

php artisan vue-i18n:generate js import Vuex from 'vuex'; import vuexI18n from 'vuex-i18n'; import Locales from './vue-i18n-locales.generated.js';

const store = new Vuex.Store();

Vue.use(vuexI18n.plugin, store);

Vue.i18n.add('en', Locales.en); Vue.i18n.add('de', Locales.de);

// set the start locale to use Vue.i18n.set(Spark.locale);

require('./components/bootstrap');

var app = new Vue({ store, mixins: [require('spark')] });

php artisan vue-i18n:generate --format {es6,umd,json}

php artisan vue-i18n:generate --format umd vue

// in your js Vue.use(VueI18n) Vue.config.lang = Laravel.language Object.keys(window.vuei18nLocales).forEach(function (lang) { Vue.locale(lang, window.vuei18nLocales[lang]) }) --multi--multi-locales php artisan vue-i18n:generate --multi{-locales} js ... "hello": "Hello {name}", ... js

{{ $t('message.hello', {name: 'visitor'}) }}



## Notices

- The generated file is an ES6 module.

The more sophisticated pluralization localization as described [here](https://laravel.com/docs/5.5/localization#pluralization) is not supported since neither vue-i18n or vuex-i18n support this.

# License

Under [MIT](LICENSE)

All versions of laravel-vue-i18n-generator with dependencies

PHP Build Version
Package Version
Requires php Version >=7.3.0
ext-json Version *
ext-mbstring Version *
illuminate/console Version >=8.0
illuminate/support Version >=8.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 danielmlozano/laravel-vue-i18n-generator contains the following files

Loading the files please wait ....