You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 27, 2023. It is now read-only.
Dear, I install via composer as suggested by the repository cover, but apparently it does not install the latest version of it, I have problems when rendering the views with Bootstrap4 which is how I currently have my project. The code of the assets of the installed version is this:
FileInputAsset.php
<?php
/**
* @link https://github.com/2amigos/yii2-file-input-widget
*
* @copyright Copyright (c) 2013-2015 2amigOS! Consulting Group LLC
* @license http://opensource.org/licenses/BSD-3-Clause
*/
namespace dosamigos\fileinput;
use yii\web\AssetBundle;
/**
* FileInputAsset.
*
* @author Antonio Ramirez <[email protected]>
*
* @link http://www.ramirezcobos.com/
* @link http://www.2amigos.us/
*/
class FileInputAsset extends AssetBundle
{
public $sourcePath = '@vendor/jasny/bootstrap/dist';
public $css = [
'css/jasny-bootstrap.css',
];
public $js = [
'js/jasny-bootstrap.js',
];
public $depends = [
'yii\bootstrap\BootstrapPluginAsset',
];
}
And this differs from the last commit you have in your file: src/FileInputAsset.php
The composer.json file in your package is as follows: composer.json
And in the file that you download when it is installed is the following:
If you observe, it does not have the bootstrap4 requirement, I can solve it by modifying the assets files, but it does not seem like a verbose way, tell me if I can install in another way that is not unzipping the package so it is loaded in my dependencies. It's a great extension!
I await your comments, greetings!
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Dear, I install via composer as suggested by the repository cover, but apparently it does not install the latest version of it, I have problems when rendering the views with Bootstrap4 which is how I currently have my project. The code of the assets of the installed version is this:
FileInputAsset.php
And this differs from the last commit you have in your file: src/FileInputAsset.php
The composer.json file in your package is as follows: composer.json
And in the file that you download when it is installed is the following:
If you observe, it does not have the bootstrap4 requirement, I can solve it by modifying the assets files, but it does not seem like a verbose way, tell me if I can install in another way that is not unzipping the package so it is loaded in my dependencies. It's a great extension!
I await your comments, greetings!
The text was updated successfully, but these errors were encountered: