The package implements client-side asset (such as CSS and JavaScript) management for PHP.
It helps resolve dependencies and get lists of files ready for generating HTML <script> and <link> tags.
- PHP 8.0 or higher.
mbstringPHP extension.
The package could be installed via composer:
composer require yiisoft/assets --prefer-distThere are three main steps using the package:
- Define asset bundles. These are config classes defining where your assets are and how they should be used.
- Register bundles to asset manager and obtain list of files to include.
- Optionally use asset converter with asset bundle for asset format conversion (such as TypeScript to JavaScript).
- Use your favorite method to include files into HTML (out of scope of this package).
The package is tested with PHPUnit. To run tests:
./vendor/bin/phpunitThe package tests are checked with Infection mutation framework with Infection Static Analysis Plugin. To run it:
./vendor/bin/roave-infection-static-analysis-pluginThe code is statically analyzed with Psalm. To run static analysis:
./vendor/bin/psalmThe Yii Assets is free software. It is released under the terms of the BSD License.
Please see LICENSE for more information.
Maintained by Yii Software.