Stefano D. Mtangoo

Results 184 comments of Stefano D. Mtangoo

useful links (have not tested them so I put here fo reference). I quickly loose links on bookmarks :) http://stackoverflow.com/questions/24275419/yii2-rest-api-file-upload-using-put https://gist.github.com/appcodr/ff02301b259488a69710

Cool I will definitely!

I have found a better maintained fork [here](https://github.com/kidzen/yii2-dynamicform). Since this repo looks like abandoned, then I suggest you try asking the same question there.

@fps01 That is what I expected. However looking at the vendor directory after installation there are all those files am talking about. The issue is easy to reproduce: 1. install...

The first thing that came in my mind is don't install any of bower packages. Yii2 already provides JQuery, bootstrap and Jquery UI. You can provide a bower package which...

@fps01 The file installs all those packages [see this](https://github.com/puikinsh/gentelella/blob/master/bower.json) and that can be avoided by (as far as I see) by removing the bower dependency on [composer.json](https://github.com/yiister/yii2-gentelella/blob/master/composer.json). The Widget seems...

@fps01 it does not have to be manual work, simple PHP callback downloading latest versions can be added to composer for post-install command. see [the composer docs ](https://getcomposer.org/doc/articles/scripts.md)on that

Here is a sample command that should not be hard to adopt ``` { "scripts": { "post-install-packaging": [ "php -r \"copy('https://github.com/puikinsh/gentelella/blob/master/src/js/custom.js', '@vendor/.../js/custom.js');\"" ] } } ```

In that case the script have to download the release package (version will be locked in there per each release), extract the zip and copy necessary files and then delete...

I have found a better maintained fork [here](https://github.com/kidzen/yii2-dynamicform). Since this repo looks like abandoned, then I suggest you try asking the same question there.