Skip to content

Commit 5d69424

Browse files
committed
Bumps dependencies
1 parent 95fd727 commit 5d69424

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
"laravel-zero/foundation": "dev-main",
3737
"league/flysystem": "^3.27.0",
3838
"nunomaduro/collision": "^8.1.1",
39-
"nunomaduro/laravel-console-summary": "^1.11.1",
39+
"nunomaduro/laravel-console-summary": "^1.12.1",
4040
"nunomaduro/laravel-console-task": "^1.9",
4141
"nunomaduro/laravel-desktop-notifier": "^2.8.1",
4242
"psr/log": "^3.0",
@@ -61,7 +61,7 @@
6161
"illuminate/view": "^11.5.0",
6262
"laminas/laminas-text": "^2.11",
6363
"laravel-zero/phar-updater": "^1.4",
64-
"laravel/pint": "^1.15.1",
64+
"laravel/pint": "^1.15.2",
6565
"nunomaduro/laravel-console-dusk": "^1.13",
6666
"nunomaduro/laravel-console-menu": "^3.5",
6767
"pestphp/pest": "^2.34.7",

src/Bootstrap/BaseLoadConfiguration.php

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@
1313

1414
namespace LaravelZero\Framework\Bootstrap;
1515

16-
use ReflectionClass;
1716
use Illuminate\Contracts\Foundation\Application as ApplicationContract;
1817
use Illuminate\Foundation\Bootstrap\LoadConfiguration;
18+
use ReflectionClass;
1919
use Symfony\Component\Finder\Finder;
2020

2121
use function basename;
@@ -64,10 +64,9 @@ protected function getBaseConfiguration()
6464
$dir = dirname($declaringClass->getFilename());
6565

6666
foreach (Finder::create()->files()->name('*.php')->in($dir.'/../../../../config') as $file) {
67-
$config[basename($file->getRelativePathname(), '.php')] = require ($file->getPath() . '/' . $file->getFilename());
67+
$config[basename($file->getRelativePathname(), '.php')] = require $file->getPath().'/'.$file->getFilename();
6868
}
6969

7070
return $config;
7171
}
7272
}
73-

0 commit comments

Comments
 (0)