You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+49-5Lines changed: 49 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -23,6 +23,7 @@ level of backwards compatibility to the official releases.
23
23
-[Requirements](#requirements)
24
24
-[Optional](#optional)
25
25
-[Installation](#installation)
26
+
-[Manual Install](#manual-install)
26
27
-[Composer](#composer)
27
28
-[Git](#git)
28
29
-[Secure your installation](#secure-your-installation)
@@ -61,21 +62,64 @@ __Please be aware that although OpenMage is compatible that one or more extensio
61
62
62
63
## Installation
63
64
65
+
### Manual Install
66
+
67
+
Download the latest [release archive](https://github.com/OpenMage/magento-lts/releases) and extract it over your existing install. **Important:** you must download the ZIP file from a tagged version on the releases page, otherwise there will be missing dependencies.
68
+
64
69
### Composer
65
70
66
-
Download the latest archive and extract it, clone the repo, or add a composer dependency to your existing project like so:
71
+
Step 1: Create a new composer project:
67
72
68
73
```bash
69
-
composer require "openmage/magento-lts":"^19.5.0"
74
+
composer init
70
75
```
71
76
72
-
To get the latest changes use:
77
+
Step 2: Configure composer. **The below options are required.** You can see all options [here](https://github.com/AydinHassan/magento-core-composer-installer#configuration).
<small>Note: `dev-main` is just an alias for current `1.9.4.x` branch and may change</small>
100
+
<small>Note: be sure to select `y` if composer asks you to trust `aydin-hassan/magento-core-composer-installer`.</small>
101
+
102
+
Step 4: Require `magento-lts`:
103
+
104
+
```bash
105
+
# OpenMage v19
106
+
composer require "openmage/magento-lts":"^19.4.0"
107
+
108
+
# OpenMage v20
109
+
composer require "openmage/magento-lts":"^20.0.0"
110
+
```
111
+
112
+
<small>Note: be sure to select `y` if composer asks you to trust `magento-hackathon/magento-composer-installer` or `cweagans/composer-patches`.</small>
113
+
114
+
To install the latest development version (may be unstable):
0 commit comments