Download the PHP package baraja-core/assets-loader without Composer

On this page you can find all versions of the php package baraja-core/assets-loader. 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 assets-loader

Smart assets loader (compatible with Nette framework)

Integrity check

Asset loader is a simple library for automatically loading styles and scripts into your application.

This package solves:

This whole package (as well as the rest of the Baraja ecosystem) has been designed for simple and elegant use. It solves most complex issues internally, so you can easily build large applications effortlessly.

📦 Installation & Basic Usage

This package can be installed using Package Manager which is also part of the Baraja Sandbox. If you are not using it, you will have to install the package manually using this guide.

A model configuration can be found in the common.neon file inside the root of the package.

To manually install the package call Composer and execute the following command:

If the automatic installation fails or is not available, register the extension in your common.neon file:

In the project's common.neon you have to define basic project assets. A fully working example of configuration can be found in the common.neon file inside this package. You can define the configuration simply using assetsLoader extension.

Important: Verify that your project www/.htaccess does not block the return of css and js files from PHP.

Basic usage

All styles and scripts are divided into 2 categories:

Place the styles and scripts in the project directory www/assets. The internal structure can be arbitrary.

Within your project common.neon file, simply define the location of each asset.

TIP:

Assets can also be declared as a URL from a CDN server (for example Baraja CDN). In this case, the CDN paths will be listed directly in the source code.

This type of asset loading is suitable for files that do not change their content over time because they are not managed by the Assets loader.

Example of a basic definition:

Enforce format specification

Important:

The format of the file is derived automatically according to the suffix (for example .css). If for any reason (for example, when loading fonts from a CDN) you cannot specify a format, you can pass it as a key and value.

For example (the key is the path to the asset, the value of the field is a supported format):

Routing rule

The routing rule is specified either as an absolute routing path (based on Nette routing rules), but an asterisk symbolic path can also be used.

The * rule always matches everything (all modules, presenters and actions).

The Front:* rule matches all presenters and actions within the same module.

The Front:Service:* rule matches all actions within the same presenter.

The Front:Service:default rule matches only one specific action.

Query parameters in the URL and other parameters do not affect routing rules. Only the static route from the Nette router is evaluated. Routing information is cached to maintain the best performance.

Operation in the presenter

In BasePresenter, create an instance of the service, pass it to the template, where it can be easily rendered. The whole logic was kept so that it was enough to simply register the service and the internal logic worked automatically.

The getHtmlInit() method automatically returns the entire rendered header content as HTML. The $this->getAction(true) method is available directly in the Presenter and returns the current route as an absolute path.

Then simply type the contents of the header in @layout.latte:

The rest works automatically.

Asset minification and compilation

The package automatically compiles and minimizes all assets on the output.

Before returning an HTTP response, caching HTTP headers and other logic are automatically set to optimize retrieval. At the same time, the package contains ready-made automatic minifiers (services implementing the Baraja\AssetsLoader\Minifier\AssetMinifier interface), which can reduce the data size of CSS and JS files.

A modified version of the JShrink library for PHP is used for minification, so you don't need any other applications on the server.

Cache handling

Before returning the rendered HTML to the header, the library automatically detects the time of the last change to any returned file. According to this change, a checksum is then calculated, which is passed as a query parameter with the version.

Change detection is performed in each request and only meta information from the filesystem is read (super fast method), therefore even if the file is changed directly on the server (or by some script), the cache is automatically invalidated immediately.

Adding a query parameter to the URL will cause a new asset to be downloaded (because the browser will not have the contents of the original file in its internal cache) and the assets will behave the original way again.

Warning: File content change detection is not performed for absolute URLs because real-time change cannot be detected.


All versions of assets-loader with dependencies

PHP Build Version
Package Version
Requires php Version ^8.0
nette/di Version ^3.0
nette/http Version ^3.0
nette/application Version ^3.0
baraja-core/url Version ^1.1
baraja-core/path-resolvers Version ^1.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 baraja-core/assets-loader contains the following files

Loading the files please wait ....