This extensions relies on Bower and/or NPM packages for the asset installation. Before using this package you should decide in which way you will install those packages in your project.
You can setup asset-packagist.org as package source for the JQuery UI assets.
In the composer.json
of your project, add the following lines:
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
]
Adjust @npm
and @bower
in you application configuration:
return [
//...
'aliases' => [
'@bower' => '@vendor/bower-asset',
'@npm' => '@vendor/npm-asset',
],
//...
];
Install composer asset plugin globally, using following command:
composer global require "fxp/composer-asset-plugin:^1.4.0"
Add the following lines to composer.json
of your project to adjust directories where the installed packages
will be placed, if you want to publish them using Yii:
"extra": {
"asset-installer-paths": {
"npm-asset-library": "vendor/npm",
"bower-asset-library": "vendor/bower"
}
}
Then you can run composer install/update command to pick up JQuery UI assets.
Note:
fxp/composer-asset-plugin
significantly slows down thecomposer update
command in comparison to asset-packagist.
You can install JQuery UI assets directly via Bower or NPM client.
In the package.json
of your project, add the following lines:
{
...
"dependencies": {
"jquery-ui": "1.12.1",
...
}
...
}
In the composer.json
of your project, add the following lines in order to prevent redundant JQuery UI asset installation:
"replace": {
"bower-asset/jquery-ui": ">=1.12.0"
},
You may use JQuery UI assets from official CDN.
In the composer.json
of your project, add the following lines in order to prevent redundant JQuery UI asset installation:
"replace": {
"bower-asset/jquery-ui": ">=1.12.0"
},
Configure 'assetManager' application component, overriding JQuery UI assent bundles with CDN links:
return [
'components' => [
'assetManager' => [
// override bundles to use CDN :
'bundles' => [
'yii\jui\JuiAsset' => [
'sourcePath' => null,
'baseUrl' => 'https://code.jquery.com/ui/1.12.1',
'js' => [
'jquery-ui.min.js'
],
],
'yii\jui\DatePickerLanguageAsset' => [
'sourcePath' => null,
'baseUrl' => 'https://code.jquery.com/ui/1.12.1',
],
],
],
// ...
],
// ...
];