Skip to content

Commit

Permalink
fixing dependencies constraints
Browse files Browse the repository at this point in the history
  • Loading branch information
hiqsol committed May 18, 2016
1 parent 6578b3c commit 7ed5adc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@
],
"require": {
"yiisoft/yii2": "^2.0",
"hiqdev/hipanel-core": "*",
"hiqdev/hipanel-module-client": "*"
"hiqdev/hipanel-core": "<2.0 || dev-master",
"hiqdev/hipanel-module-client": "<2.0 || dev-master"
},
"require-dev": {
"hiqdev/hidev-php": "<2.0",
Expand Down
4 changes: 2 additions & 2 deletions src/config/hisite.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
'components' => [
'menuManager' => [
'menus' => [
'dashboard' => hipanel\modules\dashboard\SidebarMenu::class,
'dashboard' => \hipanel\modules\dashboard\SidebarMenu::class,
],
],
],
'modules' => [
'dashboard' => [
'class' => hipanel\modules\dashboard\Module::class,
'class' => \hipanel\modules\dashboard\Module::class,
],
],
];

0 comments on commit 7ed5adc

Please sign in to comment.