![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/composer/composer/src/Composer/Package/ |
<?php declare(strict_types=1); /* * This file is part of Composer. * * (c) Nils Adermann <[email protected]> * Jordi Boggiano <[email protected]> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Composer\Package; /** * Defines package metadata that is not necessarily needed for solving and installing packages * * PackageInterface & derivatives are considered internal, you may use them in type hints but extending/implementing them is not recommended and not supported. Things may change without notice. * * @author Nils Adermann <[email protected]> */ interface CompletePackageInterface extends PackageInterface { /** * Returns the scripts of this package * * @return array<string, string[]> Map of script name to array of handlers */ public function getScripts(): array; /** * @param array<string, string[]> $scripts */ public function setScripts(array $scripts): void; /** * Returns an array of repositories * * @return mixed[] Repositories */ public function getRepositories(): array; /** * Set the repositories * * @param mixed[] $repositories */ public function setRepositories(array $repositories): void; /** * Returns the package license, e.g. MIT, BSD, GPL * * @return string[] The package licenses */ public function getLicense(): array; /** * Set the license * * @param string[] $license */ public function setLicense(array $license): void; /** * Returns an array of keywords relating to the package * * @return string[] */ public function getKeywords(): array; /** * Set the keywords * * @param string[] $keywords */ public function setKeywords(array $keywords): void; /** * Returns the package description * * @return ?string */ public function getDescription(): ?string; /** * Set the description */ public function setDescription(string $description): void; /** * Returns the package homepage * * @return ?string */ public function getHomepage(): ?string; /** * Set the homepage */ public function setHomepage(string $homepage): void; /** * Returns an array of authors of the package * * Each item can contain name/homepage/email keys * * @return array<array{name?: string, homepage?: string, email?: string, role?: string}> */ public function getAuthors(): array; /** * Set the authors * * @param array<array{name?: string, homepage?: string, email?: string, role?: string}> $authors */ public function setAuthors(array $authors): void; /** * Returns the support information * * @return array{issues?: string, forum?: string, wiki?: string, source?: string, email?: string, irc?: string, docs?: string, rss?: string, chat?: string, security?: string} */ public function getSupport(): array; /** * Set the support information * * @param array{issues?: string, forum?: string, wiki?: string, source?: string, email?: string, irc?: string, docs?: string, rss?: string, chat?: string, security?: string} $support */ public function setSupport(array $support): void; /** * Returns an array of funding options for the package * * Each item will contain type and url keys * * @return array<array{type?: string, url?: string}> */ public function getFunding(): array; /** * Set the funding * * @param array<array{type?: string, url?: string}> $funding */ public function setFunding(array $funding): void; /** * Returns if the package is abandoned or not */ public function isAbandoned(): bool; /** * If the package is abandoned and has a suggested replacement, this method returns it */ public function getReplacementPackage(): ?string; /** * @param bool|string $abandoned */ public function setAbandoned($abandoned): void; /** * Returns default base filename for archive * * @return ?string */ public function getArchiveName(): ?string; /** * Sets default base filename for archive */ public function setArchiveName(string $name): void; /** * Returns a list of patterns to exclude from package archives * * @return string[] */ public function getArchiveExcludes(): array; /** * Sets a list of patterns to be excluded from archives * * @param string[] $excludes */ public function setArchiveExcludes(array $excludes): void; }