mirror of
https://github.com/crazywhalecc/static-php-cli.git
synced 2026-07-07 00:35:41 +08:00
Add openssl lib support
This commit is contained in:
@@ -135,6 +135,22 @@ abstract class Package
|
||||
return isset($this->build_functions[PHP_OS_FAMILY]);
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the PackageBuilder instance for this package.
|
||||
*/
|
||||
public function getBuilder(): PackageBuilder
|
||||
{
|
||||
return ApplicationContext::get(PackageBuilder::class);
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the PackageInstaller instance for this package.
|
||||
*/
|
||||
public function getInstaller(): PackageInstaller
|
||||
{
|
||||
return ApplicationContext::get(PackageInstaller::class);
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the name of the package.
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user