Magento Version | Supported PHP Versions | Link to Source |
---|---|---|
2.0.0 | ~5.5.0 | ~5.6.0 | ~7.0.0 | composer.json |
2.0.18 | ~5.5.0 | ~5.6.0 | ~7.0.0 | composer.json |
2.1.0 | ~5.6.0 | 7.0.2 | ~7.0.6 | composer.json |
2.1.18 | ~5.6.5 | 7.0.2 | 7.0.4 | ~7.0.6 | ~7.1.0 | composer.json |
2.2.0 | 7.0.2 | 7.0.4 | ~7.0.6 | ~7.1.0 | composer.json |
2.2.11 | ~7.0.13 | ~7.1.0 | ~7.2.0 | composer.json |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
tac CE-1.9.4.3-1.9.4.4-2020-01-28-04-51-47.diff | sed '/+ \* @copyright/{n;N;N;N;N;N;N;d;}' |sed '/+\/\/ @copyright/{n;N;N;N;N;N;N;d;}'| tac | sed '/+ \* @copyright/{N;N;N;N;N;d;}' | sed '/+\/\/ @copyright/{N;N;N;N;N;d;}'> CE-actual.diff |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# tested on MacOS - uses gsed | |
# brew install gnu-sed | |
TAG="$1" | |
if [[ -z "$TAG" ]]; then | |
echo "Usage: tag-release.sh TAG" | |
echo " Example: tag-release.sh 1.0.0" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "magento/project-community-edition", | |
"description": "eCommerce Platform for Growth (Community Edition)", | |
"type": "project", | |
"license": [ | |
"OSL-3.0", | |
"AFL-3.0" | |
], | |
"config": { | |
"preferred-install": "dist", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/php | |
<?php | |
/** | |
* validate_m2_package.php - a script that checks a given M2 zip package to ensure | |
* it is structured correctly and has all the required files. | |
*/ | |
/** |