Skip to content
Open

Dev #329

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# yii2-dynamicform change Log

## [v3.0.1 (2023-01-26)](https://github.com/projector22/yii2-dynamicform/compare/v3.0.0...v3.0.1)

- Updated `symfony/dom-crawler` to `^6.0.0`.

## [v3.0.0 (2023-01-23)](https://github.com/projector22/yii2-dynamicform/compare/v3.0.0...v2.0.3)

- Forked
- Updated `symfony/css-selector` to `^6.0.0`.

## [v2.0.3 (2020-05-18)](https://github.com/wbraganca/yii2-dynamicform/compare/v2.0.3...v2.0.2)

Expand Down
11 changes: 7 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "wbraganca/yii2-dynamicform",
"name": "projector22/yii2-dynamicform",
"description": "It is widget to yii2 framework to clone form elements in a nested manner, maintaining accessibility.",
"keywords": [
"wbraganca",
Expand All @@ -22,16 +22,19 @@
"name": "Wanderson Bragança",
"email": "[email protected]",
"homepage": "http://wbraganca.com"
}, {
"name": "Gareth Palmer",
"email": "[email protected]"
}
],
"require": {
"yiisoft/yii2": "~2.0.5",
"symfony/css-selector": "~2.8|~3.0",
"symfony/dom-crawler": "~2.8|~3.0"
"symfony/css-selector": "^6.0.0",
"symfony/dom-crawler": "^6.0.0"
},
"autoload": {
"psr-4": {
"wbraganca\\dynamicform\\": "src"
"projector22\\dynamicform\\": "src"
}
}
}
2 changes: 1 addition & 1 deletion src/DynamicFormAsset.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* @license https://github.com/wbraganca/yii2-dynamicform/blob/master/LICENSE
*/

namespace wbraganca\dynamicform;
namespace projector22\dynamicform;

/**
* Asset bundle for dynamicform Widget
Expand Down
2 changes: 1 addition & 1 deletion src/DynamicFormWidget.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* @license https://github.com/wbraganca/yii2-dynamicform/blob/master/LICENSE
*/

namespace wbraganca\dynamicform;
namespace projector22\dynamicform;

use Yii;
use yii\helpers\Html;
Expand Down