@@ -294,6 +294,17 @@
+
+ | Website |
+
+ getWebsite()) { ?>
+ = $module->getWebsite() ?>
+
+ unbekannte Website
+
+ |
+
+
| Alle Versionen |
diff --git a/src/Templates/ModuleListingModule.tmpl.php b/src/Templates/ModuleListingModule.tmpl.php
index 88cdbd04..a68c377e 100644
--- a/src/Templates/ModuleListingModule.tmpl.php
+++ b/src/Templates/ModuleListingModule.tmpl.php
@@ -18,7 +18,8 @@
$modulePrice = $module->isInstalled() ? 'installiert' : $moduleView->getPriceFormated();
$moduleLink = '?action=moduleInfo&archiveName=' . $module->getArchiveName() . '&version=' . $module->getVersion();
-
+$moduleDeveloper = $module->getDeveloper();
+$moduleDeveloperWebsite = $module->getDeveloperWebsite();
?>
@@ -30,6 +31,13 @@
= $module->getName(); ?>
= $module->getVersion(); ?>
+
-
\ No newline at end of file
+
diff --git a/src/Templates/Styles/style.css b/src/Templates/Styles/style.css
index 4a14a631..fa823b85 100644
--- a/src/Templates/Styles/style.css
+++ b/src/Templates/Styles/style.css
@@ -71,7 +71,7 @@ select + p {
select.form-control {
height: 38px !important;
-}
+}
h1,
h2,
@@ -188,6 +188,11 @@ section {
color: var(--gray);
}
+.modules .category .card .card-developer {
+ font-size: 0.8rem;
+ margin-top: 0.2rem;
+}
+
.modules .category .card .module-price {
font-size: 1.25em;
color: var(--blue);
diff --git a/tests/unit/RemoteModuleLoaderTest.php b/tests/unit/RemoteModuleLoaderTest.php
index 8c340220..4409ed58 100644
--- a/tests/unit/RemoteModuleLoaderTest.php
+++ b/tests/unit/RemoteModuleLoaderTest.php
@@ -67,7 +67,7 @@ public function testCanLoadLatestVersionByArchiveName()
$module = $this->loader->loadLatestVersionByArchiveName('composer/autoload');
$this->assertEquals('composer/autoload', $module->getArchiveName());
- $this->assertEquals('1.2.2', $module->getVersion());
+ $this->assertEquals('1.3.0', $module->getVersion());
}
public function testCanLoadByArchiveNameAndVersion()
|