PackageManifest
class PackageManifest
Properties
| Filesystem | $files | The filesystem instance. |
|
| string | $basePath | The base path. |
|
| string | $vendorPath | The vendor path. |
|
| string|null | $manifestPath | The manifest path. |
|
| array|null | $manifest | The loaded manifest array (filtered by runtime ignore list). |
|
| protected array|null | $rawManifest | The raw manifest loaded from cache or built from installed.json. |
|
| static protected array<int, string> | $packagesToIgnore | Packages that should be ignored during discovery. |
Methods
Create a new package manifest instance.
Get all of the service provider class names for all packages.
Get all of the aliases for all packages.
Get all of the values for all packages for the given configuration name.
Get the cached version string for a package.
Determine if the given package is installed.
Determine if a package satisfies a version constraint.
Get the current package manifest.
Discover installed Hypervel package metadata.
Build the manifest and write it to disk.
Format the given package name.
Format the given package name with the given vendor path.
Get the package names ignored by root composer metadata.
Get a root Composer extra.hypervel value.
Get the package names that should be ignored during build.
Set packages that should be ignored during discovery.
Write the given manifest array to disk.
Flush all static state.
Details
at line 62
__construct(Filesystem $files, string $basePath, string|null $manifestPath)
Create a new package manifest instance.
at line 73
array
providers()
Get all of the service provider class names for all packages.
at line 81
array
aliases()
Get all of the aliases for all packages.
at line 89
array
config(string $key)
Get all of the values for all packages for the given configuration name.
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.
at line 114
bool
hasPackage(string $package)
Determine if the given package is installed.
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
at line 158
protected array
getManifest()
Get the current package manifest.
The raw manifest is cached from disk/build. The runtime ignore list (from ignorePackageDiscoveriesFrom) is applied on every call, so filtering works correctly even when the ignore list changes after the manifest was first loaded (e.g., in test suites).
at line 190
static array
discoverInstalledPackages(Filesystem $files, string $vendorPath, array $baseIgnore)
Discover installed Hypervel package metadata.
at line 231
void
build()
Build the manifest and write it to disk.
at line 248
protected string
format(string $package)
Format the given package name.
at line 256
static protected string
formatPackageName(string $package, string $vendorPath)
Format the given package name with the given vendor path.
at line 266
static array
packagesToIgnoreFromComposer(Filesystem $files, string $basePath)
Get the package names ignored by root composer metadata.
at line 276
static mixed
rootHypervelExtra(Filesystem $files, string $basePath, string $key)
Get a root Composer extra.hypervel value.
at line 306
protected array
packagesToIgnore()
Get the package names that should be ignored during build.
Only includes project-level dont-discover from composer.json. Runtime ignores (from ignorePackageDiscoveriesFrom) are applied at read time in getManifest(), not at build time.
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.
at line 333
protected void
write(array $manifest)
Write the given manifest array to disk.
at line 348
static void
flushState()
Flush all static state.