mirror of
https://github.com/koel/koel
synced 2024-11-10 14:44:13 +00:00
fix: restore helpers to Helpers because not worth it
This commit is contained in:
parent
94fc39e532
commit
bfa6a9c8e6
4 changed files with 3 additions and 3 deletions
|
@ -60,7 +60,7 @@
|
|||
"Database\\Seeders\\": "database/seeders/"
|
||||
},
|
||||
"files": [
|
||||
"app/helpers.php"
|
||||
"app/Helpers.php"
|
||||
]
|
||||
},
|
||||
"autoload-dev": {
|
||||
|
@ -72,7 +72,7 @@
|
|||
"Database\\Factories\\": "database/factories/"
|
||||
},
|
||||
"files": [
|
||||
"tests/helpers.php"
|
||||
"tests/Helpers.php"
|
||||
]
|
||||
},
|
||||
"scripts": {
|
||||
|
|
|
@ -26,7 +26,7 @@ return [
|
|||
'include_helpers' => false,
|
||||
|
||||
'helper_files' => [
|
||||
base_path() . '/vendor/laravel/framework/src/Illuminate/Support/helpers.php',
|
||||
base_path() . '/vendor/laravel/framework/src/Illuminate/Support/Helpers.php',
|
||||
],
|
||||
|
||||
/*
|
||||
|
|
Loading…
Reference in a new issue