Skip to content

Commit 2972338

Browse files
committed
redone to composer-config-plugin
1 parent 0b604a9 commit 2972338

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

composer.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -44,14 +44,14 @@
4444
}
4545
],
4646
"require": {
47-
"yiisoft/yii2": "2.x",
48-
"yiisoft/yii2-twig": "2.x",
49-
"symfony/yaml": "3.x | 2.x",
47+
"yiisoft/yii2": "^2.0",
48+
"yiisoft/yii2-twig": "^2.0",
49+
"symfony/yaml": "^3.0 | ^2.0",
5050
"hiqdev/yii2-collection": "*"
5151
},
5252
"require-dev": {
5353
"yiisoft/yii2": "dev-master",
54-
"hiqdev/composer-extension-plugin": "<2.0"
54+
"hiqdev/composer-config-plugin": "dev-master"
5555
},
5656
"autoload": {
5757
"psr-4": {
@@ -63,8 +63,8 @@
6363
"bin/hidev"
6464
],
6565
"extra": {
66-
"extension-plugin": {
67-
"hidev-config": "src/config/hidev.php"
66+
"config-plugin": {
67+
"hidev": "src/config/hidev.php"
6868
}
6969
},
7070
"repositories": [

src/base/Application.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ public static function create(array $config)
7070

7171
public static function readExtraVendor($dir)
7272
{
73-
return static::readExtraConfig($dir . '/hiqdev/hidev-config.php');
73+
return static::readExtraConfig($dir . '/hiqdev/config/hidev.php');
7474
}
7575

7676
public static function readExtraConfig($path)

src/controllers/StartController.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ protected function requireAll()
117117
throw new InvalidParamException('Failed initialize project with composer install');
118118
}
119119
}
120-
if (file_exists('vendor/hiqdev/hidev-config.php')) {
120+
if (file_exists('vendor/hiqdev/config/hidev.php')) {
121121
$vendors[] = 'vendor';
122122
}
123123
if (!empty($vendors)) {

0 commit comments

Comments
 (0)