From e5a030d700243a90eccf96a070380bd3b76e17a3 Mon Sep 17 00:00:00 2001 From: Kartik Visweswaran Date: Tue, 9 Oct 2018 23:10:19 +0530 Subject: [PATCH] Update to release v3.4.1 --- .github/CONTRIBUTING.md | 126 ++++++++++++++++ .github/ISSUE_TEMPLATE.md | 47 ++++++ .github/PULL_REQUEST_TEMPLATE.md | 16 ++ CHANGE.md | 151 ++++++++++--------- LICENSE.md | 2 +- README.md | 9 +- composer.json | 17 ++- ActiveField.php => src/ActiveField.php | 2 +- ActiveForm.php => src/ActiveForm.php | 2 +- Affix.php => src/Affix.php | 2 +- Alert.php => src/Alert.php | 2 +- AlertBlock.php => src/AlertBlock.php | 2 +- AssetBundle.php => src/AssetBundle.php | 2 +- ColorInput.php => src/ColorInput.php | 2 +- DatePicker.php => src/DatePicker.php | 2 +- DateTimePicker.php => src/DateTimePicker.php | 2 +- DepDrop.php => src/DepDrop.php | 2 +- FileInput.php => src/FileInput.php | 2 +- Growl.php => src/Growl.php | 2 +- InputWidget.php => src/InputWidget.php | 2 +- RangeInput.php => src/RangeInput.php | 2 +- Select2.php => src/Select2.php | 2 +- SideNav.php => src/SideNav.php | 2 +- Spinner.php => src/Spinner.php | 2 +- StarRating.php => src/StarRating.php | 2 +- SwitchInput.php => src/SwitchInput.php | 2 +- TimePicker.php => src/TimePicker.php | 2 +- TouchSpin.php => src/TouchSpin.php | 2 +- Typeahead.php => src/Typeahead.php | 2 +- TypeaheadBasic.php => src/TypeaheadBasic.php | 2 +- Widget.php => src/Widget.php | 2 +- WidgetAsset.php => src/WidgetAsset.php | 2 +- 32 files changed, 309 insertions(+), 109 deletions(-) create mode 100644 .github/CONTRIBUTING.md create mode 100644 .github/ISSUE_TEMPLATE.md create mode 100644 .github/PULL_REQUEST_TEMPLATE.md rename ActiveField.php => src/ActiveField.php (98%) rename ActiveForm.php => src/ActiveForm.php (98%) rename Affix.php => src/Affix.php (98%) rename Alert.php => src/Alert.php (97%) rename AlertBlock.php => src/AlertBlock.php (98%) rename AssetBundle.php => src/AssetBundle.php (96%) rename ColorInput.php => src/ColorInput.php (97%) rename DatePicker.php => src/DatePicker.php (97%) rename DateTimePicker.php => src/DateTimePicker.php (97%) rename DepDrop.php => src/DepDrop.php (98%) rename FileInput.php => src/FileInput.php (98%) rename Growl.php => src/Growl.php (97%) rename InputWidget.php => src/InputWidget.php (96%) rename RangeInput.php => src/RangeInput.php (97%) rename Select2.php => src/Select2.php (98%) rename SideNav.php => src/SideNav.php (98%) rename Spinner.php => src/Spinner.php (97%) rename StarRating.php => src/StarRating.php (98%) rename SwitchInput.php => src/SwitchInput.php (98%) rename TimePicker.php => src/TimePicker.php (98%) rename TouchSpin.php => src/TouchSpin.php (97%) rename Typeahead.php => src/Typeahead.php (98%) rename TypeaheadBasic.php => src/TypeaheadBasic.php (98%) rename Widget.php => src/Widget.php (96%) rename WidgetAsset.php => src/WidgetAsset.php (96%) diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md new file mode 100644 index 0000000..d489a72 --- /dev/null +++ b/.github/CONTRIBUTING.md @@ -0,0 +1,126 @@ +Contributing to yii2-widgets +============================ +Looking to contribute something to yii2-widgets? **Here's how you can help.** + +Please take a moment to review this document in order to make the contribution +process easy and effective for everyone involved. + +Following these guidelines helps to communicate that you respect the time of +the developers managing and developing this open source project. In return, +they should reciprocate that respect in addressing your issue or assessing +patches and features. + +Using the issue tracker +----------------------- +When [reporting bugs][reporting-bugs] or +[requesting features][requesting-features], the +[issue tracker on GitHub][issue-tracker] is the recommended channel to use. + +The issue tracker **is not** a place for support requests. Refer the +[extension documentation and demos](http://demos.krajee.com/widgets) and/or refer to the +[webtips Q & A forum](http://webtips.krajee.com/questions) which are the better places to get help. + +Reporting bugs with yii2-widgets +-------------------------------- +We really appreciate clear bug reports that _consistently_ show an issue +_within yii2-widgets_. + +The ideal bug report follows these guidelines: + +1. **Use the [GitHub issue search][issue-search]** — Check if the issue + has already been reported. +2. **Check if the issue has been fixed** — Try to reproduce the problem + using the code in the `master` branch. +3. **Isolate the problem** — Try to share a demo or a test case that + consistently reproduces the problem. + +Please try to be as detailed as possible in your bug report, especially if an +isolated test case cannot be made. Some useful questions to include the answer +to are: + +- What steps can be used to reproduce the issue? +- What is the bug and what is the expected outcome? +- What browser(s) and Operating System have you tested with? +- Does the bug happen consistently across all tested browsers? +- What version of jQuery are you using? And what version of yii2-widgets? +- Are you using yii2-widgets with other plugins? + +All of these questions will help others fix and identify any potential bugs. + +Requesting features in yii2-widgets +------------------------------------------ +Before starting work on a major feature for yii2-widgets, **read the +[documentation](http://demos.krajee.com/widgets) first** or you may risk spending a considerable amount of +time on something which the project developers are not interested in bringing into the project. + +### Submitting a pull request + +We use GitHub's pull request system for submitting patches. Here are some +guidelines to follow when creating the pull request for your fix. + +1. Make sure to create a ticket for your pull request. This will serve as the +bug ticket, and any discussion about the bug will take place there. Your pull +request will be focused on the specific changes that fix the bug. +2. Make sure to reference the ticket you are fixing within your pull request. +This will allow us to close off the ticket once we merge the pull request, or +follow up on the ticket if there are any related blocking issues. +3. Explain why the specific change was made. Not everyone who is reviewing your +pull request will be familiar with the problem it is fixing. +4. Run your tests first. If your tests aren't passing, the pull request won't +be able to be merged. If you're breaking existing tests, make sure that you +aren't causing any breaking changes. +5. Only include source changes. While it's not required, only including changes +from the `src` directory will prevent merge conflicts from occuring. Making +this happen can be as a simple as not committing changes from the `dist` +directory. + +By following these steps, you will make it easier for your pull request to be +reviewed and eventually merged. + +Triaging issues and pull requests +--------------------------------- +Anyone can help the project maintainers triage issues and review pull requests. + +### Handling new issues + +yii2-widgets regularly receives new issues which need to be tested and organized. + +When a new issue that comes in that is similar to another existing issue, it +should be checked to make sure it is not a duplicate. Duplicates issues should +be marked by replying to the issue with "Duplicate of #[issue number]" where +`[issue number]` is the url or issue number for the existing issue. This will +allow the project maintainers to quickly close off additional issues and keep +the discussion focused within a single issue. + +If you can test issues that are reported to yii2-widgets that contain test cases and +confirm under what conditions bugs happen, that will allow others to identify +what causes a bug quicker. + +### Reviewing pull requests + +It is very common for pull requests to be opened for issues that contain a clear +solution to the problem. These pull requests should be rigorously reviewed by +the community before being accepted. If you are not sure about a piece of +submitted code, or know of a better way to do something, do not hesitate to make +a comment on the pull request. + +### Reviving old tickets + +If you come across tickets which have not been updated for a while, you are +encouraged to revive them. While this can be as simple as saying `:+1:`, it is +best if you can include more information on the issue. Common bugs and feature +requests are more likely to be fixed, whether it is by the community or the +developers, so keeping tickets up to date is encouraged. + +Licensing +--------- + +It should also be made clear that **all code contributed to yii2-widgets** must be +licensable under the [BSD-3-Clause license][licensing]. Code that cannot be released +under this license **cannot be accepted** into the project. + +[issue-search]: https://github.com/kartik-v/yii2-widgets/search?q=&type=Issues +[issue-tracker]: https://github.com/kartik-v/yii2-widgets/issues +[licensing]: https://github.com/kartik-v/yii2-widgets/blob/master/LICENSE.md +[reporting-bugs]: #reporting-bugs-with-yii2-widgets +[requesting-features]: #requesting-features-in-yii2-widgets \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md new file mode 100644 index 0000000..4f9f93d --- /dev/null +++ b/.github/ISSUE_TEMPLATE.md @@ -0,0 +1,47 @@ +## Prerequisites + +- [ ] I have searched for similar issues in both open and closed tickets and cannot find a duplicate. +- [ ] The issue still exists against the latest `master` branch of yii2-widgets. +- [ ] This is not an usage question. I confirm having gone through and read the [documentation and demos](http://demos.krajee.com/widgets). +- [ ] This is not a general programming / coding question. (Those should be directed to the [webtips Q & A forum](http://webtips.krajee.com/questions)). +- [ ] I have attempted to find the simplest possible steps to reproduce the issue. +- [ ] I have included a failing test as a pull request (Optional). + +## Steps to reproduce the issue + +1. +2. +3. + +## Expected behavior and actual behavior + +When I follow those steps, I see... + +I was expecting... + +## Environment + +#### Browsers + +- [ ] Google Chrome +- [ ] Mozilla Firefox +- [ ] Internet Explorer +- [ ] Safari + +#### Operating System + +- [ ] Windows +- [ ] Mac OS X +- [ ] Linux +- [ ] Mobile + +#### Libraries + +- jQuery version: +- yii2-widgets version: + +## Isolating the problem + +- [ ] This bug happens [on the demos page](https://demos.krajee.com/widgets) +- [ ] The bug happens consistently across all tested browsers +- [ ] This bug happens when using yii2-widgets without other plugins. \ No newline at end of file diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 0000000..87e61f5 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,16 @@ +## Scope +This pull request includes a + +- [ ] Bug fix +- [ ] New feature +- [ ] Translation + +## Changes +The following changes were made (this change is also documented in the [change log](https://github.com/kartik-v/yii2-widgets/blob/master/CHANGE.md)): + +- +- +- + +## Related Issues +If this is related to an existing ticket, include a link to it as well. \ No newline at end of file diff --git a/CHANGE.md b/CHANGE.md index cb38c09..fa7bee7 100644 --- a/CHANGE.md +++ b/CHANGE.md @@ -1,116 +1,118 @@ Change Log: yii2-widgets ======================== -## version 3.4.1 +## Version 3.4.1 -**Date:** 05-Dec-2015 +**Date**: 09-Oct-2018 -1. Added ActiveField component +- Update composer dependencies +- Move all source code to `src` directory. +- Add github contribution and issue/PR log templates. +- Added ActiveField component -## version 3.4.0 +## Version 3.4.0 **Date:** 09-Nov-2014 -1. enh #199: Revamp yii2-widgets extension bundle to refer to individual sub repositories. -2. Set release to stable. +- enh #199: Revamp yii2-widgets extension bundle to refer to individual sub repositories. +- Set release to stable. -## version 3.3.0 +## Version 3.3.0 **Date:** 05-Nov-2014 -1. enh #193: Upgraded select2 plugin to latest version. -2. enh #166: Reverted back Select2 placeholder CSS for bootstrap v3.3.0. -3. enh #195: Enable Typeahead option to conditionally load HandleBars. -4. enh #198: Enhance dependency validation using common code base. +- enh #198: Enhance dependency validation using common code base. +- enh #195: Enable Typeahead option to conditionally load HandleBars. +- enh #193: Upgraded select2 plugin to latest version. +- enh #166: Reverted back Select2 placeholder CSS for bootstrap v3.3.0. -## version 3.2.0 +## Version 3.2.0 **Date:** 25-Oct-2014 -1. enh #181: Enhance RangeInput to include new vertical orientation -2. bug #183: Fix typeahead remote loading spinning indicator. -3. enh #184: Update select2 plugin to the latest release v3.5.1. -4. enh #185: Update typeahead plugin to the latest release v0.10.5. -4. enh #186: Better replacement of tags for field template. +- enh #186: Better replacement of tags for field template. +- enh #185: Update typeahead plugin to the latest release v0.10.5. +- enh #184: Update select2 plugin to the latest release v3.5.1. +- bug #183: Fix typeahead remote loading spinning indicator. +- enh #181: Enhance RangeInput to include new vertical orientation -## version 3.1.0 +## Version 3.1.0 **Date:** 10-Oct-2014 -1. enh #169: Enhancement for ICU format con## version for DatePicker and DateTimePicker (enrica, kartik-v). -2. bug #172: More correct InputWidget name field parsing. -3. enh #173: Fix styling for FileInput additional line feed. -4. enh #177: Add Italian translations. +- enh #177: Add Italian translations. +- enh #173: Fix styling for FileInput additional line feed. +- bug #172: More correct InputWidget name field parsing. +- enh #169: Enhancement for ICU format con## Version for DatePicker and DateTimePicker (enrica, kartik-v). -## version 3.0.0 +## Version 3.0.0 **Date:** 08-Oct-2014 -1. PSR4 alias change -2. enh #162: Add Russian locale and translation for DatePicker plugin. -3. enh #165, #166, #168: Various Select2 styling enhancements for Bootstrap. -4. Updated Select2 plugin ## version to latest version. +- enh #165, #166, #168: Various Select2 styling enhancements for Bootstrap. +- enh #162: Add Russian locale and translation for DatePicker plugin. +- PSR4 alias change +- Updated Select2 plugin ## Version to latest version. -## version 2.9.0 +## Version 2.9.0 **Date:** 14-Aug-2014 -1. bug #132: Enhance growl widget for major changes to core plugin. -2. Separate animation enhancements added to growl. -3. enh # 150: Enhance `ColorInput` widget to allow controlling display of default palette of colors. -4. bug # 151: Remove duplicate encoding for placeholder. -5. enh # 153: Various enhancements to `ColorInput` widget to read colors correctly based on plugin `preferredFormat`. -6. bug # 157: Correct duplicate `label` displayed after SwitchInput. +- bug # 157: Correct duplicate `label` displayed after SwitchInput. +- enh # 153: Various enhancements to `ColorInput` widget to read colors correctly based on plugin `preferredFormat`. +- bug # 151: Remove duplicate encoding for placeholder. +- enh # 150: Enhance `ColorInput` widget to allow controlling display of default palette of colors. +- Separate animation enhancements added to growl. +- bug #132: Enhance growl widget for major changes to core plugin. -## version 2.8.0 +## Version 2.8.0 **Date:** 31-Jul-2014 -1. enh #119, #121: Various styling enhancements to Select2. -2. enh #122: Upgrade bootstrap growl to latest plugin ## version with various related enhancements -3. enh #71: Created separate [yii2-editable](https://github.com/kartik-v/yii2-editable) extension +- enh #122: Upgrade bootstrap growl to latest plugin ## Version with various related enhancements +- enh #121, #119: Various styling enhancements to Select2. +- enh #71: Created separate [yii2-editable](https://github.com/kartik-v/yii2-editable) extension -## version 2.7.0 +## Version 2.7.0 **Date:** 18-Jul-2014 -1. enh #96: Enhanced DatePicker, DateTimePicker, and TimePicker to work along with the new `autoWidgetSettings` for DateControl module . -2. enh #98: Added `language` configuration property for DatePicker, DateTimePicker, and TimePicker. -3. bug #99: Fix DateControl to work for date time formatting with DateTimePicker. -4. enh #104: Add more information to documentation for Select2 widget and explain placeholder setting when `allowClear` is `true`. -5. enh #106: Added Turkish translations for FileInput widget. -6. bug #110: Allow use of Select2 with tags, when tags are empty. -7. enh #111: Allow configuring of template for each item in SideNav. -8. Added `iconPrefix` property in SideNav to easily configure with more icon frameworks (other than glyphicon). +- Added `iconPrefix` property in SideNav to easily configure with more icon frameworks (other than glyphicon). +- enh #111: Allow configuring of template for each item in SideNav. +- bug #110: Allow use of Select2 with tags, when tags are empty. +- enh #106: Added Turkish translations for FileInput widget. +- enh #104: Add more information to documentation for Select2 widget and explain placeholder setting when `allowClear` is `true`. +- bug #99: Fix DateControl to work for date time formatting with DateTimePicker. +- enh #98: Added `language` configuration property for DatePicker, DateTimePicker, and TimePicker. +- enh #96: Enhanced DatePicker, DateTimePicker, and TimePicker to work along with the new `autoWidgetSettings` for DateControl module . -## version 2.6.0 +## Version 2.6.0 **Date:** 01-Jul-2014 -1. Issue Fixes from #73 to #95. -2. Added `language` property to `InputWidget` along with `initLanguage` method for automatic language setting in `pluginOptions`. +- Issue Fixes from #73 to #95. +- Added `language` property to `InputWidget` along with `initLanguage` method for automatic language setting in `pluginOptions`. The `language` property will be auto defaulted to `Yii::$app->language` if not set. -## version 2.5.1 +## Version 2.5.1 -1. Updated DepDrop widget to support rendering of \kartik\widgets\Select2 widget. +- Updated DepDrop widget to support rendering of \kartik\widgets\Select2 widget. -## version 2.5.0 +## Version 2.5.0 -1. New DepDrop widget based on [dependent-dropdown plugin](http://plugins.krajee.com/dependent-dropdown). -2. Upgrade Select2 Widget to v3.4.8 of the `select2` plugin. +- New DepDrop widget based on [dependent-dropdown plugin](http://plugins.krajee.com/dependent-dropdown). +- Upgrade Select2 Widget to v3.4.8 of the `select2` plugin. -## version 2.4.0 +## Version 2.4.0 -1. Star Rating Widget upgraded as a result of the base Krajee StarRating JQuery plugin upgrade. -2. Upgrade Select2 Widget to v3.4.6 of the `select2` plugin. +- Star Rating Widget upgraded as a result of the base Krajee StarRating JQuery plugin upgrade. +- Upgrade Select2 Widget to v3.4.6 of the `select2` plugin. -## version 2.3.0 +## Version 2.3.0 - -1. Typeahead widget upgraded to use ## version 0.10 of the `typeahead.js` plugin. -2. The widget has been released as 2 variants: +- Typeahead widget upgraded to use ## Version 0.10 of the `typeahead.js` plugin. +- The widget has been released as 2 variants: - `TypeaheadBasic`: This widget is a basic implementation of the *typeahead.js* plugin without any suggestion engine. It uses a javascript substring matcher and Regular Expression matching to query and display suggestions. @@ -120,34 +122,33 @@ Change Log: yii2-widgets engine and the *Handlebars* template compiler. [```VIEW DEMO```](http://demos.krajee.com/widget-details/typeahead) -## version 2.2.0 +## Version 2.2.0 -1. New category of widgets added - 'Notification'. Widgets now categorized as +- New category of widgets added - 'Notification'. Widgets now categorized as - Input Widgets - Progress Widgets - Navigation Widgets - Notification Widgets -2. Added `Alert` widget extending the default \yii\bootstrap\Alert widget with more styling and auto fade out options. -3. Added `Growl` widget wrapping the Bootstrap Growl JQuery plugin. -4. Added `AlertBlock` widget allowing a block of alerts to be displayed and faded out. Uses and processes session flash messages if needed. - -## version 2.1.0 +- Added `Alert` widget extending the default \yii\bootstrap\Alert widget with more styling and auto fade out options. +- Added `Growl` widget wrapping the Bootstrap Growl JQuery plugin. +- Added `AlertBlock` widget allowing a block of alerts to be displayed and faded out. Uses and processes session flash messages if needed. +## Version 2.1.0 -1. Widgets categorized as +- Widgets categorized as - Input Widgets - Progress Widgets - Navigation Widgets -2. Added DateTimePicker widget enhanced for Bootstrap 3.x based on the [Bootstrap DateTimePicker Plugin](http://www.malot.fr/bootstrap-datetimepicker/) by smalot. -3. Added Spinner widget based on spin.js - an animated CSS3 loading spinner with VML fallback for IE. +- Added DateTimePicker widget enhanced for Bootstrap 3.x based on the [Bootstrap DateTimePicker Plugin](http://www.malot.fr/bootstrap-datetimepicker/) by smalot. +- Added Spinner widget based on spin.js - an animated CSS3 loading spinner with VML fallback for IE. -## version 2.0.0 +## Version 2.0.0 -[enh # 40] FileInput widget now wraps the enhanced [JQuery Bootstrap FileInput Plugin](http://github.com/kartik-v/bootstrap-fileinput). +- enh #40: FileInput widget now wraps the enhanced [JQuery Bootstrap FileInput Plugin](http://github.com/kartik-v/bootstrap-fileinput). The fileinput routines and rendering have been enhanced and offers ability to configure most options, call events, and methods. -## version 1.0.0 +## Version 1.0.0 Initial release \ No newline at end of file diff --git a/LICENSE.md b/LICENSE.md index 7c3a564..7f04f80 100755 --- a/LICENSE.md +++ b/LICENSE.md @@ -1,4 +1,4 @@ -Copyright (c) 2014, Kartik Visweswaran +Copyright (c) 2014 - 2018, Kartik Visweswaran Krajee.com All rights reserved. diff --git a/README.md b/README.md index 0bd3f70..f91d111 100755 --- a/README.md +++ b/README.md @@ -1,7 +1,8 @@ yii2-widgets ============ -[![Latest Stable Version](https://poser.pugx.org/kartik-v/yii2-widgets/v/stable)](https://packagist.org/packages/kartik-v/yii2-widgets) +[![Stable Version](https://poser.pugx.org/kartik-v/yii2-widgets/v/stable)](https://packagist.org/packages/kartik-v/yii2-widgets) +[![Unstable Version](https://poser.pugx.org/kartik-v/yii2-widgets/v/unstable)](https://packagist.org/packages/kartik-v/yii2-widgets) [![License](https://poser.pugx.org/kartik-v/yii2-widgets/license)](https://packagist.org/packages/kartik-v/yii2-widgets) [![Total Downloads](https://poser.pugx.org/kartik-v/yii2-widgets/downloads)](https://packagist.org/packages/kartik-v/yii2-widgets) [![Monthly Downloads](https://poser.pugx.org/kartik-v/yii2-widgets/d/monthly)](https://packagist.org/packages/kartik-v/yii2-widgets) @@ -82,9 +83,9 @@ or add to the ```require``` section of your `composer.json` file. -## Latest Release +## Release Updates ->NOTE: The latest version of the module is v3.4.0 released on 09-Nov-2014. Refer the [CHANGE LOG](https://github.com/kartik-v/yii2-widgets/blob/master/CHANGE.md) for details. +> Refer the [CHANGE LOG](https://github.com/kartik-v/yii2-widgets/blob/master/CHANGE.md) for details on changes to various releases. The widgets currently available in **yii2-widgets** are grouped by the type of usage. @@ -696,4 +697,4 @@ echo AlertBlock::widget([ ## License -**yii2-widgets** is released under the BSD 3-Clause License. See the bundled `LICENSE.md` for details. +**yii2-widgets** is released under the BSD-3-Clause License. See the bundled `LICENSE.md` for details. diff --git a/composer.json b/composer.json index 76567b7..76ff542 100755 --- a/composer.json +++ b/composer.json @@ -1,10 +1,15 @@ { "name": "kartik-v/yii2-widgets", "description": "Collection of useful widgets for Yii Framework 2.0 extending functionalities for Bootstrap", - "keywords": ["yii2", "extension", "widget", "form"], + "keywords": [ + "yii2", + "extension", + "widget", + "form" + ], "homepage": "https://github.com/kartik-v/yii2-widgets", "type": "yii2-extension", - "license": "BSD 3-Clause", + "license": "BSD-3-Clause", "authors": [ { "name": "Kartik Visweswaran", @@ -12,7 +17,6 @@ "homepage": "http://www.krajee.com/" } ], - "minimum-stability": "dev", "require": { "kartik-v/yii2-krajee-base": "*", "kartik-v/yii2-widget-activeform": "*", @@ -36,7 +40,12 @@ }, "autoload": { "psr-4": { - "kartik\\widgets\\": "" + "kartik\\widgets\\": "src" + } + }, + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" } } } diff --git a/ActiveField.php b/src/ActiveField.php similarity index 98% rename from ActiveField.php rename to src/ActiveField.php index c02908d..ad5e7e4 100644 --- a/ActiveField.php +++ b/src/ActiveField.php @@ -1,7 +1,7 @@