Skip to content

Commit

Permalink
Moved config dir to root
Browse files Browse the repository at this point in the history
  • Loading branch information
hiqsol committed Mar 9, 2019
1 parent 3ccf793 commit 5da8f06
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions composer.json
Expand Up @@ -68,17 +68,17 @@
},
"extra": {
"config-plugin": {
"defines": "src/config/defines.php",
"params": "src/config/params.php",
"common": "src/config/common.php",
"defines": "config/defines.php",
"params": "config/params.php",
"common": "config/common.php",
"tests": "$common",
"console": [
"$common",
"src/config/console.php"
"config/console.php"
],
"web": [
"$common",
"src/config/web.php"
"config/web.php"
]
}
},
Expand Down
2 changes: 1 addition & 1 deletion src/config/common.php → config/common.php
Expand Up @@ -13,7 +13,7 @@
return [
'id' => 'hiapi',
'name' => 'HiAPI',
'basePath' => dirname(__DIR__),
'basePath' => dirname(__DIR__) . '/src',

/// aliases must be set before their use
'aliases' => $aliases,
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 5da8f06

Please sign in to comment.