예제 #1
0
파일: Dumper.php 프로젝트: staabm/pickle
 /**
  * @param \Pickle\Base\Interfaces\Package $package
  *
  * @return array
  */
 public function dump(Interfaces\Package $package)
 {
     $data = [];
     $data['name'] = $package->getPrettyName();
     $stability = $package->getStability();
     /* not appending stable is ok */
     $version_tail = $stability && 'stable' != $stability ? "-{$stability}" : '';
     $data['version'] = $package->getPrettyVersion() . $version_tail;
     $data['type'] = $package->getType();
     if ($license = $package->getLicense()) {
         $data['license'] = $license;
     }
     if ($authors = $package->getAuthors()) {
         $data['authors'] = $authors;
     }
     if ($description = $package->getDescription()) {
         $data['description'] = $description;
     }
     if ($support = $package->getSupport()) {
         $data['support'] = $support;
     }
     if ($extra = $package->getExtra()) {
         $data['extra'] = $extra;
     }
     return $data;
 }
예제 #2
0
 /**
  * @param \Pickle\Base\Interfaces\Package $package
  *
  * @return array
  */
 public function dump(Interfaces\Package $package, $with_version = true)
 {
     $data = [];
     $data['name'] = $package->getPrettyName();
     if ($with_version) {
         $data['version'] = $package->getPrettyVersion();
     }
     $data['type'] = $package->getType();
     if ($license = $package->getLicense()) {
         $data['license'] = $license;
     }
     if ($authors = $package->getAuthors()) {
         $data['authors'] = $authors;
     }
     if ($description = $package->getDescription()) {
         $data['description'] = $description;
     }
     if ($support = $package->getSupport()) {
         $data['support'] = $support;
     }
     if ($extra = $package->getExtra()) {
         $data['extra'] = $extra;
     }
     return $data;
 }
예제 #3
0
 public function showInfo(OutputInterface $output, Interfaces\Package $package)
 {
     $table = new Table($output);
     $stability = $package->getStability();
     $table->setRows([['<info>Package name</info>', $package->getPrettyName()], ['<info>Package version (current release)</info>', str_replace("-{$stability}", '', $package->getPrettyVersion())], ['<info>Package status</info>', $stability]])->render();
 }