Download the PHP package hihaho/laravel-js-store without Composer

On this page you can find all versions of the php package hihaho/laravel-js-store. 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-js-store

Laravel JS Store

Latest Version on Packagist Build Status Quality Score Total Downloads

Easily pass data to your view to create an initial state for your frontend. This package lets you easily create and register global data providers (for each page), which for example is useful for user data. You can also manually push data on the fly, for example in a controller.

Installation

You can install the package via composer:

Next you should render the js data on your page, there are a few different ways to do this:

Blade directive

Add the @frontend_store directive to your view:

Overwrite the default view

Publish the current one using php artisan vendor:publish --tag=laravel-js-store-views or create a new view: resources/views/vendor/js-store/script.blade.php

Output the data the way you want and then include it using the blade directive (@frontend_store).

Usage

There are two methods of pushing data to the store, through data-providers or pushing manually.

Pushing manually

At any point in your application you can push data to the store using the helper, facade or through the laravel container.

You can push pretty much any type of data, as long as it can be cast to a string.

Data-providers

Data-providers are classes that can be used to globally define data that should be send to your frontend. It's also a convenient way to store more logic related to the data, or define a rule if the data needs to be rendered.

The data-providers are defined in your config, so first you'll have to publish the config file.

This should create config/js-store.php.

Create a data provider using the artisan make command:

This creates a data-provider which extends HiHaHo\LaravelJsStore\AbstractFrontendDataProvider.

An example of a data-provider might look like this:

Next, register you data-provider in config/js-store.php:

Your data will now automatically be rendered in blade views (in this case only when the user is signed in).

Usage with Laravel Octane

This package registers a singleton to manage all data that's sent to the JS Store. Laravel Octane will register one instance per request, but only when the singleton is not accessed inside a service provider. For this reason it's not possible to push data to the store within a service provider.

Generally it won't be necessary to flush all data between requests, but if you need this behaviour you can flush the data between requests. Any data that is pushed within a service provider won't be available in requests. To flush the data between requests you should add the PrepareStoreForNextOperation::class listener to the following Octane events in config/octane.php:

Testing

Changelog

Please see CHANGELOG for more information what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Credits

License

The MIT License (MIT). Please see License File for more information.

Laravel Package Boilerplate

This package was generated using the Laravel Package Boilerplate.


All versions of laravel-js-store with dependencies

PHP Build Version
Package Version
Requires php Version ^8.2
ext-json Version *
illuminate/support Version ^11.31|^12.0
spatie/laravel-package-tools Version ^1.14
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 hihaho/laravel-js-store contains the following files

Loading the files please wait ....