Skip to content

Commit 8a892e7

Browse files
authored
Merge pull request #60 from WyriHaximus/update-composer.lock-without-going-over-the-network
Update composer.lock without going over the network
2 parents bfe03aa + c7e61df commit 8a892e7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ syntax-php: ## Lint PHP syntax ##*ILH*##
5353

5454
composer-normalize: ### Normalize composer.json ##*I*##
5555
$(DOCKER_RUN) composer normalize
56-
$(DOCKER_RUN) composer update --lock --no-scripts
56+
$(DOCKER_RUN) COMPOSER_DISABLE_NETWORK=1 composer update --lock --no-scripts
5757

5858
rector-upgrade: ## Upgrade any automatically upgradable old code ##*I*##
5959
$(DOCKER_RUN) vendor/bin/rector -c ./etc/qa/rector.php

includes/PHP.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ syntax-php: ## Lint PHP syntax ##*ILH*##
33

44
composer-normalize: ### Normalize composer.json ##*I*##
55
$(DOCKER_RUN) composer normalize
6-
$(DOCKER_RUN) composer update --lock --no-scripts
6+
$(DOCKER_RUN) COMPOSER_DISABLE_NETWORK=1 composer update --lock --no-scripts
77

88
rector-upgrade: ## Upgrade any automatically upgradable old code ##*I*##
99
$(DOCKER_RUN) vendor/bin/rector -c ./etc/qa/rector.php

0 commit comments

Comments
 (0)