Skip to content

Commit f6c24af

Browse files
committed
Code style
1 parent 80bfc76 commit f6c24af

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/php.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
uses: actions/checkout@v2
1212

1313
- name: Docker compose up
14-
run: docker-compose up -d
14+
run: docker compose up -d
1515

1616
- name: Validate composer.json and composer.lock
1717
run: composer validate

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ setup-dev: ## Setup project for development
88
make composer-install
99

1010
start: ## Start application silently
11-
docker-compose up -d
11+
docker compose up -d
1212

1313
stop: ## Stop application
14-
docker-compose down
14+
docker compose down
1515

1616
restart: ## Restart the application
1717
make stop

0 commit comments

Comments
 (0)