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": "naderman/sample-meta-package", | |
| "version": "1.0.0", | |
| "type": "metapackage", | |
| "require": { | |
| "naderman/package1": "self.version", | |
| "naderman/package2": "self.version", | |
| "naderman/package3": "2.0.3" | |
| } | |
| } |
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
| <?php | |
| /** | |
| * This file is part of Namespace for Magento. | |
| * | |
| * @license All rights reserved | |
| * @author Phuong LE <phuong.le@agence-soon.fr> <@> | |
| * @category Namespace | |
| * @package Namespace_Core | |
| * @copyright Copyright (c) 2016 Agence Soon (http://www.agence-soon.fr) | |
| */ |
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
| <?php | |
| /** | |
| * Has shipping been applied to quote? | |
| * | |
| * @var bool | |
| */ | |
| protected $_hasShipping = false; | |
| /** |
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
| <?php | |
| /** | |
| * Script to manage to version of Magento in a git mirror | |
| * php $argv[0] core-repository new-version-of-magento | |
| * | |
| * It will look for Mage.php in new-version-of-magento and parse the version | |
| * and edition from it. | |
| * | |
| * It will copy the code, remove the old files, create new branches if necessary |