Compare commits

..

2 Commits

Author SHA1 Message Date
Dave Mc Nicoll
58bc2211ad Merge branch 'master' of https://git.mcnd.ca/mcndave/picea-asset 2023-11-07 11:00:59 -05:00
Dave Mc Nicoll
4afe237ae6 - Now autoloading default configs 2023-11-07 11:00:47 -05:00
2 changed files with 15 additions and 0 deletions

View File

@ -28,6 +28,9 @@
"autoload": { "autoload": {
"definitions": [ "definitions": [
"meta/definitions.php" "meta/definitions.php"
],
"config": [
"meta/config.php"
] ]
} }
} }

12
meta/config.php Normal file
View File

@ -0,0 +1,12 @@
<?php
return [
'picea' => [
'asset' => [
'path' => "static",
'symlink' => [
'destination' => getenv("PUBLIC_PATH") . "/static"
]
]
],
];