From 8dbd9bab30552d8380e8c62f7c12a49d5ddf3896 Mon Sep 17 00:00:00 2001 From: Mike Smith Date: Thu, 24 Mar 2016 14:26:50 +0000 Subject: [PATCH] Add support for PHP 7 Adds PHP 7 support for Magento by pulling in a very simple extension during the composer install (provided by Inchoo, see: http://inchoo.net/magento/its-alive/). Magento runs much much faster on PHP 7 and it's actually very easy to provide support with a tiny alteration. --- README.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 940fe9dc..afb0b19f 100644 --- a/README.md +++ b/README.md @@ -21,11 +21,16 @@ Begin by creating a `composer.json` in the root of Magento, and ensure it has th { "type": "vcs", "url": "https://github.com/magento-hackathon/magento-composer-installer" + }, + { + "url": "https://github.com/Inchoo/Inchoo_PHP7.git", + "type": "git" } ], "require": { "magento-hackathon/magento-composer-installer": "*", - "webcomm/magento-boilerplate": "2.0.x-dev" + "webcomm/magento-boilerplate": "2.0.x-dev", + "inchoo/php7": "*" }, "extra": { "magento-root-dir": "./",