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
| { | |
| "name": "spryker-shop/b2b-demo-shop", | |
| "require": { | |
| "vendor-name/spryker-category-by-key-importer": "dev-master", | |
| }, | |
| "repositories": { | |
| "0": { | |
| "type": "path", | |
| "url": "../vendor-name/spryker-category-by-key-importer", | |
| "options": { |
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
| [ISSUE-ID] Short summary up to 50 chars | |
| # More detailed explanatory text, if necessary. Wrap it to | |
| # 72 characters. In some contexts, the first line is treated | |
| # as the subject of an email and the rest of the text as | |
| # the body. The blank line separating the summary from the | |
| # body is critical (unless you omit the body entirely); tools | |
| # like rebase can get confused if you run the two together. | |
| # | |
| # Further paragraphs come after blank lines. |
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 | |
| # Simple script to check the health of a created droplet | |
| fail_count=1 | |
| while true | |
| do | |
| response=$(curl --write-out %{http_code} --silent --output /dev/null $1) | |
| if [ $response -eq 200 ] ; then |
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 |
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
| server { | |
| listen 80 default_server; | |
| listen 443 default ssl; | |
| root /var/www/domain.com; | |
| server_name domain.com www.domain.com; | |
| ssl_certificate /etc/letsencrypt/live/domain.com/cert.pem; | |
| ssl_certificate_key /etc/letsencrypt/live/domain.com/privkey.pem; |