diff --git a/_data/nav.json b/_data/nav.json index 7fd6316..7765a85 100644 --- a/_data/nav.json +++ b/_data/nav.json @@ -18,9 +18,5 @@ { "label": "About Project", "url": "/magento-lts/about.html" - }, - { - "label": "Newsletter", - "url": "/#newsletter" } -] \ No newline at end of file +] diff --git a/_data/nav_de.json b/_data/nav_de.json index e551d61..e97eee6 100644 --- a/_data/nav_de.json +++ b/_data/nav_de.json @@ -18,9 +18,5 @@ { "label": "Das Projekt", "url": "/de/magento-lts/about.html" - }, - { - "label": "Newsletter", - "url": "/de/#newsletter" } ] diff --git a/_data/versions.json b/_data/versions.json index eb0a0d4..5113b29 100644 --- a/_data/versions.json +++ b/_data/versions.json @@ -1,5 +1,5 @@ { "composer": { - "latestStableBranch": "19.4.6" + "latestStableBranch": "main" } } diff --git a/de/index.html b/de/index.html index 66e57bf..43eabc5 100644 --- a/de/index.html +++ b/de/index.html @@ -101,97 +101,6 @@

OpenMage LTS für Entwicklung

-
-
-
-
-
- -
-
- - - - -
-
-
-
- -
-
-

- OpenMage LTS Roadmap -

- - - -
-
-
- Alert icon -
-
- PHP 7.4 Support -
-
- Unterstützt PHP 7.4, das sich noch im Review befindet, aber es sollte mit der nächsten Version fertig sein. -
- -
- -
-
- Shield icon -
-
- Labor für Innovationen: Sicherheit -
-
- Verpflichtung zu Bug-Bounty-Programmen und Sicherheitsaudits, um eine sichere Code-Basis zu gewährleisten. -
-
- -
-
- Repeat icon -
-
- Labor für Innovationen: Tests -
-
- Fortsetzung des Aufbaus einer vollständigen Testsuite für OpenMage LTS. -
- -
- -
-
- Alert icon -
-
- PHP 8 Support -
-
- Unterstützt PHP 8.0, das sich noch im Review befindet, aber es sollte mit der nächsten Version fertig sein. -
-
-
-
-
-
@@ -530,4 +439,4 @@

- \ No newline at end of file + diff --git a/de/magento-lts/changelog/magento1-openmage-20_0.html b/de/magento-lts/changelog/magento1-openmage-20_0.html index a7b5843..76d7e52 100644 --- a/de/magento-lts/changelog/magento1-openmage-20_0.html +++ b/de/magento-lts/changelog/magento1-openmage-20_0.html @@ -28,7 +28,7 @@

- Github Branch 1.9.4.x + Github Branch v19

Bei der Version 19 wird es sich um eine LTS-Version mit unbegrenzter Lebensdauer, jedoch @@ -51,7 +51,7 @@

- Github Branch 20.0.x + Github Branch main

Die Version 20 wird nicht rückwärtskompatibel mit Magento sein. diff --git a/index.html b/index.html index 8974b6c..f727589 100644 --- a/index.html +++ b/index.html @@ -101,91 +101,6 @@

OpenMage LTS for developers

- - -
-
-

- OpenMage LTS Roadmap -

- - - -
-
-
- Alert icon -
-
- PHP 8.0 Support -
-
- -
-
- Shield icon -
-
- Innovations Lab: Security -
-
- Committing to bug bounty programs and security audits to ensure a secure code base. -
-
- -
-
- Repeat icon -
-
- Innovations Lab: Tests -
-
- Continue to build out a full test suite for OpenMage LTS. -
- -
- -
-
- Alert icon -
-
- PHP 8.1 Support -
-
- PHP 8.1 support should be ready with the next release. -
-
-
-
-
-
diff --git a/magento-lts/changelog/magento1-openmage-20_0.html b/magento-lts/changelog/magento1-openmage-20_0.html index dcedc9a..4a2f835 100644 --- a/magento-lts/changelog/magento1-openmage-20_0.html +++ b/magento-lts/changelog/magento1-openmage-20_0.html @@ -27,7 +27,7 @@

- Github Branch 1.9.4.x + Github Branch v19

The Version 19 will be an LTS Version with indefinite Lifetime, but at least 5 Years. It will @@ -49,7 +49,7 @@

- Github Branch 20.0.x + Github Branch main

The Version 20 will not be backward compatible with magento. It is an independent project in @@ -71,4 +71,4 @@

-

\ No newline at end of file +
diff --git a/magento-lts/install.html b/magento-lts/install.html index 0791a6a..762f7c2 100644 --- a/magento-lts/install.html +++ b/magento-lts/install.html @@ -65,39 +65,62 @@

Install via composer

-

aydin-hassan/magento-core-composer-installer

+

Step 1: Create a new composer project

-
{
-    "require": {
-        "aydin-hassan/magento-core-composer-installer": "*",
-        "openmage/magento-lts": "{{ site.data.versions.composer.latestStableBranch }}"
-    },
-    "extra": {
-        "magento-core-package-type": "magento-source",
-        "magento-root-dir": "htdocs"
-    }
-}
+
composer init
- +
-

aoepeople/composer-installers

+

Step 2: Configure composer. The below options are required. You can see all options here.

-
{
-    "require": {
-        "aoepeople/composer-installers": "*",
-        "openmage/magento-lts": "{{ site.data.versions.composer.latestStableBranch }}"
-    }
-}
-
+

+# Allow composer to apply patches to dependencies of magento-lts
+composer config --json extra.enable-patching true
+
+# Configure Magento core composer installer to use magento-lts as the Magento source package
+composer config extra.magento-core-package-type magento-source
+
+# Configure the root directory that magento-lts will be installed to, such as "pub", "htdocs", or "www"
+composer config extra.magento-root-dir pub
+                    
- -

- Warning - Note: switching to AOEs composer installer will wipe your htdocs folder, it’s not just copying the magento-lts files. - If you already symlink local.xml, media and var folder - then just go ahead. -

+ +
+

Step 3: Require magento-core-composer-installer

+
+

+# PHP 7
+composer require "aydin-hassan/magento-core-composer-installer":"~2.0.0"
+
+# PHP 8
+composer require "aydin-hassan/magento-core-composer-installer":"^2.1.0"
+                    
+
+

Note: be sure to select y if composer asks you to trust aydin-hassan/magento-core-composer-installer.

+
+ +
+

Step 4: Require the appropriate version of magento-lts

+
+

+# Latest tagged v20 series release
+composer require "openmage/magento-lts":"^20.0.0"
+
+# Legacy v19 tagged release (Magento 1.9.4.x drop-in replacement supported until April 4, 2025)
+composer require "openmage/magento-lts":"^19.4.0"
+
+# Latest on "main" development branch
+composer require "openmage/magento-lts":"dev-main"
+
+# Latest on "next" development branch
+composer require "openmage/magento-lts":"dev-next"
+                    
+
+

Note: be sure to select y if composer asks you to trust magento-hackathon/magento-composer-installer or cweagans/composer-patches.

+
+