class PackageManifest extends PackageManifest

Properties

Filesystem $files

The filesystem instance.

from  PackageManifest
string $basePath

The base path.

from  PackageManifest
string $vendorPath

The vendor path.

from  PackageManifest
string|null $manifestPath

The manifest path.

from  PackageManifest
array|null $manifest

The loaded manifest array (filtered by runtime ignore list).

from  PackageManifest
protected array|null $rawManifest

The raw manifest loaded from cache or built from installed.json.

from  PackageManifest
static protected array<int, string> $packagesToIgnore

Packages that should be ignored during discovery.

from  PackageManifest
protected object|null $testbench

The current testbench instance.

protected array<int, string> $requiredPackages

Packages that must remain discoverable when discovery is disabled.

Methods

__construct(Filesystem $files, string $basePath, string|null $manifestPath, object|null $testbench = null)

Create a new package manifest instance.

array
providers()

Get all of the service provider class names for all packages.

array
aliases()

Get all of the aliases for all packages.

array
config(string $key)

Get all of the values for all packages for the given configuration name.

string|null
version(string $package)

Get the cached version string for a package.

bool
hasPackage(string $package)

Determine if the given package is installed.

bool
satisfies(string $package, string $constraint)

Determine if a package satisfies a version constraint.

array
getManifest()

Get the current package manifest.

static array
discoverInstalledPackages(Filesystem $files, string $vendorPath, array $baseIgnore)

Discover installed Hypervel package metadata.

void
build()

Build the manifest and write it to disk.

string
format(string $package)

Format the given package name.

static string
formatPackageName(string $package, string $vendorPath)

Format the given package name with the given vendor path.

static array
packagesToIgnoreFromComposer(Filesystem $files, string $basePath)

Get the package names ignored by root composer metadata.

static mixed
rootHypervelExtra(Filesystem $files, string $basePath, string $key)

Get a root Composer extra.hypervel value.

array
packagesToIgnore()

Get the packages that should be ignored during manifest build.

static void
ignorePackageDiscoveriesFrom(array $packages)

Set packages that should be ignored during discovery.

void
write(array $manifest)

Write the given manifest array to disk.

static void
flushState()

Flush all static state.

static void
swap(Application $app, object|null $testbench = null)

Swap the application binding to the Testbench package manifest.

void
setTestbench(object|null $testbench)

Set the current testbench instance.

requires(string ...$packages)

Require packages even when discovery is disabled.

array
providersFromRoot()

Get the root package discovery configuration.

array|null
providersFromTestbench()

Get the root package composer metadata.

Details

at line 37
__construct(Filesystem $files, string $basePath, string|null $manifestPath, object|null $testbench = null)

Create a new package manifest instance.

Parameters

Filesystem $files
string $basePath
string|null $manifestPath
object|null $testbench

in PackageManifest at line 73
array providers()

Get all of the service provider class names for all packages.

Return Value

array

in PackageManifest at line 81
array aliases()

Get all of the aliases for all packages.

Return Value

array

in PackageManifest at line 89
array config(string $key)

Get all of the values for all packages for the given configuration name.

Parameters

string $key

Return Value

array

in PackageManifest at line 104
string|null version(string $package)

Get the cached version string for a package.

Returns the version from the manifest cache, avoiding runtime Composer API calls. Useful for feature gating and compatibility checks in application and package code.

Parameters

string $package

Return Value

string|null

in PackageManifest at line 114
bool hasPackage(string $package)

Determine if the given package is installed.

Parameters

string $package

Return Value

bool

in PackageManifest at line 130
bool satisfies(string $package, string $constraint)

Determine if a package satisfies a version constraint.

Uses Composer's semver constraint parser for full constraint support (e.g., "^2.0", ">=1.5 <3.0", "~4.1").

Requires composer/semver package. Add it to your project: composer require composer/semver

Parameters

string $package
string $constraint

Return Value

bool

Exceptions

RuntimeException

at line 92
protected array getManifest()

Get the current package manifest.

Return Value

array

in PackageManifest at line 190
static array discoverInstalledPackages(Filesystem $files, string $vendorPath, array $baseIgnore)

Discover installed Hypervel package metadata.

Parameters

Filesystem $files
string $vendorPath
array $baseIgnore

Return Value

array

in PackageManifest at line 231
void build()

Build the manifest and write it to disk.

Return Value

void

in PackageManifest at line 248
protected string format(string $package)

Format the given package name.

Parameters

string $package

Return Value

string

in PackageManifest at line 256
static protected string formatPackageName(string $package, string $vendorPath)

Format the given package name with the given vendor path.

Parameters

string $package
string $vendorPath

Return Value

string

in PackageManifest at line 266
static array packagesToIgnoreFromComposer(Filesystem $files, string $basePath)

Get the package names ignored by root composer metadata.

Parameters

Filesystem $files
string $basePath

Return Value

array

in PackageManifest at line 276
static mixed rootHypervelExtra(Filesystem $files, string $basePath, string $key)

Get a root Composer extra.hypervel value.

Parameters

Filesystem $files
string $basePath
string $key

Return Value

mixed

at line 122
protected array packagesToIgnore()

Get the packages that should be ignored during manifest build.

Return Value

array

in PackageManifest at line 323
static void ignorePackageDiscoveriesFrom(array $packages)

Set packages that should be ignored during discovery.

Used by testbench to suppress package discovery at runtime without modifying the project's composer.json.

Boot or tests only. The list persists in a static property used during package discovery; runtime use has no effect on already-discovered providers.

Parameters

array $packages

Return Value

void

at line 167
protected void write(array $manifest)

Write the given manifest array to disk.

Parameters

array $manifest

Return Value

void

in PackageManifest at line 348
static void flushState()

Flush all static state.

Return Value

void

at line 51
static void swap(Application $app, object|null $testbench = null)

Swap the application binding to the Testbench package manifest.

Parameters

Application $app
object|null $testbench

Return Value

void

at line 72
void setTestbench(object|null $testbench)

Set the current testbench instance.

Parameters

object|null $testbench

Return Value

void

at line 80
PackageManifest requires(string ...$packages)

Require packages even when discovery is disabled.

Parameters

string ...$packages

Return Value

PackageManifest

at line 133
protected array providersFromRoot()

Get the root package discovery configuration.

Return Value

array

at line 151
protected array|null providersFromTestbench()

Get the root package composer metadata.

Return Value

array|null