|
@@ -37,6 +37,7 @@ class MemoryPackage extends BasePackage
|
|
|
protected $keywords;
|
|
|
protected $authors;
|
|
|
protected $description;
|
|
|
+ protected $homepage;
|
|
|
protected $extra = array();
|
|
|
|
|
|
protected $requires = array();
|
|
@@ -470,6 +471,24 @@ class MemoryPackage extends BasePackage
|
|
|
return $this->description;
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * Set the homepage
|
|
|
+ *
|
|
|
+ * @param string $homepage
|
|
|
+ */
|
|
|
+ public function setHomepage($homepage)
|
|
|
+ {
|
|
|
+ $this->homepage = $homepage;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * {@inheritDoc}
|
|
|
+ */
|
|
|
+ public function getHomepage()
|
|
|
+ {
|
|
|
+ return $this->homepage;
|
|
|
+ }
|
|
|
+
|
|
|
/**
|
|
|
* Set the autoload mapping
|
|
|
*
|