Skip to content

Commit

Permalink
🔖 v4.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
QWp6t committed Jan 31, 2024
1 parent f467dce commit 9911d18
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/Roots/Acorn/Application.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class Application extends FoundationApplication
*
* @var string
*/
public const VERSION = '4.x-dev';
public const VERSION = '4.0.0';

/**
* The custom resources path defined by the developer.
Expand Down Expand Up @@ -195,8 +195,9 @@ protected function registerPackageManifest()
])
->map(fn ($path) => rtrim($files->normalizePath($path), '/'))
->unique()
->filter(fn ($path) => @$files->isFile("{$path}/vendor/composer/installed.json") &&
@$files->isFile("{$path}/composer.json")
->filter(
fn ($path) => @$files->isFile("{$path}/vendor/composer/installed.json") &&
@$files->isFile("{$path}/composer.json")
)->all();

return new PackageManifest(
Expand Down

0 comments on commit 9911d18

Please sign in to comment.