diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..b263871 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,10 @@ +# Path-based git attributes +# https://www.kernel.org/pub/software/scm/git/docs/gitattributes.html + +# Ignore all test and documentation with "export-ignore". +/.gitattributes export-ignore +/.gitignore export-ignore +/.travis.yml export-ignore +/phpunit.xml.dist export-ignore +/.scrutinizer.yml export-ignore +/tests export-ignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..f308e6f --- /dev/null +++ b/.gitignore @@ -0,0 +1,27 @@ +build +docs +vendor + +# cache directories +Thumbs.db +*.DS_Store +*.empty + +#phpstorm project files +.idea + +#netbeans project files +nbproject + +#eclipse, zend studio, aptana or other eclipse like project files +.buildpath +.project +.settings + +# composer itself is not needed +composer.phar +composer.lock + +# mac deployment helpers +switch +index diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..022a38d --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,19 @@ +yii2-fancytree-widget change Log +================================ + +dev-master +---------- + + +version 1.0.1 +------------- +**Date:** 08-Nov-2015 + +- Enh: Refactored code +- Enh: fancytree.js dependency updated to ~v2.12 + +version 1.0.0 +------------- +**Date:** 04-Jun-2014 + +Initial release diff --git a/FancytreeAsset.php b/src/FancytreeAsset.php similarity index 100% rename from FancytreeAsset.php rename to src/FancytreeAsset.php diff --git a/FancytreeWidget.php b/src/FancytreeWidget.php similarity index 100% rename from FancytreeWidget.php rename to src/FancytreeWidget.php