Download the PHP package carbdrox/pimcore-vite-bundle without Composer

On this page you can find all versions of the php package carbdrox/pimcore-vite-bundle. 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 pimcore-vite-bundle

Pimcore Vite Bundle

Total Downloads Latest Version

This bundle adds a Service to your Pimcore project, which can resolve vite assets.

Installation

Using composer

Enable the Bundle

Usage

To resolve your vite assets inside twig templates you can use the function vite('asset/path') which accepts the asset path as parameter.

If you need to resolve your asset inside php code, you need to inject the Service \ViteBundle\Services\ViteService::class then you can use the method getAsset('asset/path') from this service, which also accepts the asset path as parameter.

If you want to use the hot reload functionality, you need to insert the following snippet at the bottom of your twig template.
It will insert the required script which is required by vite to enable the hot reloading.
The script tag will only be inserted if the APP_ENV is 'dev' and you the template is not opened in editmode.

Configuration

Automatic vite configuration

It is highly recommended to use the pimcore-vite-plugin in combination with this bundle. It will configure your vite to work in harmony with this bundle.

Manual vite configuration

If you prefer to write your vite config yourself, you need to provide some files for this bundle to work correctly.

The bundle requires you to provide a manifest.json file, which contains all the asset paths keyed by their vite path. This manifest.json will be loaded frompublic/build/manifest.json`.

If you want to make use of the hot reload functionality, you need to provide a file named vite-serve in your public folder whenever your vite dev server is running.
This file must contain the url of your vite dev server e.g. http://localhost:5173. The file must not contain any additional text or whitespaces.

Contributing

Thank you for considering contributing! The contribution guide can be found in the CONTRIBUTING.md.

Code of Conduct

Please review and abide by the Code of Conduct.

License

The Pimcore Vite bundle is licensed under the MIT license.


All versions of pimcore-vite-bundle with dependencies

PHP Build Version
Package Version
Requires pimcore/pimcore Version >=10.0 <12.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 carbdrox/pimcore-vite-bundle contains the following files

Loading the files please wait ....