Skip to content

Commit

Permalink
Add support for PHP 7
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
mike-source committed Mar 24, 2016
1 parent 02e09af commit 8dbd9ba
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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": "./",
Expand Down

0 comments on commit 8dbd9ba

Please sign in to comment.