-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from demvsystems/BIP-3047
[BIP-3047] update guzzle to v7
- Loading branch information
Showing
3 changed files
with
315 additions
and
359 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,23 @@ | ||
DOCKER_PHP_SERVICE = php-fpm | ||
|
||
.PHONY: docker-new docker-composer docker-up docker-kill docker-test | ||
.PHONY: composer-install composer-update test new up kill | ||
|
||
docker-new: docker-kill | ||
docker-compose up -d --build --remove-orphans | ||
make docker-composer-install | ||
|
||
docker-composer-install: | ||
composer-install: | ||
docker-compose exec $(DOCKER_PHP_SERVICE) composer install --optimize-autoloader | ||
|
||
docker-composer-update: | ||
docker-compose exec $(DOCKER_PHP_SERVICE) composer update --lock | ||
composer-update: | ||
docker-compose exec $(DOCKER_PHP_SERVICE) composer update | ||
|
||
test: | ||
docker-compose exec $(DOCKER_PHP_SERVICE) composer test | ||
|
||
new: kill | ||
docker-compose up -d --build --remove-orphans | ||
make docker-composer-install | ||
|
||
docker-up: | ||
up: | ||
docker-compose up -d | ||
|
||
docker-kill: | ||
kill: | ||
docker-compose kill | ||
docker-compose down --volumes --remove-orphans |
This file contains 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
Oops, something went wrong.