?????????? ????????? - ??????????????? - /opt/cpanel/ea-wappspector/vendor/knplabs/packagist-api/src/Packagist/Api/Result/Package/Version.php
???????
<?php namespace Packagist\Api\Result\Package; use Packagist\Api\Result\AbstractResult; class Version extends AbstractResult { /** * @var string */ protected $name; /** * @var string */ protected $description; /** * @var array */ protected $keywords; /** * @var string */ protected $homepage; /** * @var string */ protected $version; /** * @var string */ protected $versionNormalized; /** * @var string */ protected $license; /** * @var array */ protected $authors; /** * @var Source */ protected $source; /** * @var Dist */ protected $dist; /** * @var string */ protected $type; /** * @var string */ protected $time; /** * @var array */ protected $autoload; /** * @var array */ protected $extra; /** * @var array */ protected $require; /** * @var array */ protected $requireDev; /** * @var string */ protected $conflict; /** * @var string */ protected $provide; /** * @var string */ protected $replace; /** * @var string */ protected $bin; /** * @var array */ protected $suggest; /** * @var bool|string */ protected $abandoned = false; /** * @return string */ public function getName() { return $this->name; } /** * @return string */ public function getDescription() { return $this->description; } /** * @return array */ public function getKeywords() { return $this->keywords; } /** * @return string */ public function getHomepage() { return $this->homepage; } /** * @return string */ public function getVersion() { return $this->version; } /** * @return string */ public function getVersionNormalized() { return $this->versionNormalized; } /** * @return string */ public function getLicense() { return $this->license; } /** * @return array */ public function getAuthors() { return $this->authors; } /** * @return Source */ public function getSource() { return $this->source; } /** * @return Dist */ public function getDist() { return $this->dist; } /** * @return string */ public function getType() { return $this->type; } /** * @return string */ public function getTime() { return $this->time; } /** * @return array */ public function getAutoload() { return $this->autoload; } /** * @return array */ public function getExtra() { return $this->extra; } /** * @return array */ public function getRequire() { return $this->require; } /** * @return array */ public function getRequireDev() { return $this->requireDev; } /** * @return string */ public function getConflict() { return $this->conflict; } /** * @return string */ public function getProvide() { return $this->provide; } /** * @return string */ public function getReplace() { return $this->replace; } /** * @return string */ public function getBin() { return $this->bin; } /** * @return array */ public function getSuggest() { return $this->suggest; } /** * @return bool */ public function isAbandoned() { return (bool) $this->abandoned; } /** * Gets the package name to use as a replacement if this package is abandoned * * @return string|null */ public function getReplacementPackage(): ?string { // The Packagist API will either return a boolean, or a string value for `abandoned`. It will be a boolean // if no replacement package was provided when the package was marked as abandoned in Packagist, or it will be // a string containing the replacement package name to use if one was provided. // @see https://github.com/KnpLabs/packagist-api/pull/56#discussion_r306426997 if (is_string($this->abandoned)) { return $this->abandoned; } return null; } }
| ver. 1.6 |
Github
|
.
| PHP 8.2.30 | ??????????? ?????????: 0 |
proxy
|
phpinfo
|
???????????