Skip to content

Commit

Permalink
Merge pull request #32 from wmde/docker-compose-update
Browse files Browse the repository at this point in the history
Prepare for docker compose v2
  • Loading branch information
moiikana authored Jan 6, 2025
2 parents 65cbc03 + 188e98d commit 71b9229
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 8 deletions.
2 changes: 0 additions & 2 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,6 @@ updates:
interval: "monthly"
reviewers:
- "wmde/funtech-core"
# Disabling automated updates until the end of the campaign 2024-12-31
open-pull-requests-limit: 0
groups:
patch-updates:
update-types:
Expand Down
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,16 @@ test: phpunit
cs: phpcs stan

phpunit:
docker-compose run --rm app ./vendor/bin/phpunit
docker compose run --rm app ./vendor/bin/phpunit

phpcs:
docker-compose run --rm app ./vendor/bin/phpcs -p -s
docker compose run --rm app ./vendor/bin/phpcs -p -s

stan:
docker-compose run --rm app ./vendor/bin/phpstan analyse --level=9 --no-progress src/ tests/
docker compose run --rm app ./vendor/bin/phpstan analyse --level=9 --no-progress src/ tests/

fix-cs:
docker-compose run --rm app ./vendor/bin/phpcbf -p -s
docker compose run --rm app ./vendor/bin/phpcbf -p -s


composer:
Expand Down
2 changes: 0 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
version: '2'

services:
app:
image: php:8.2-alpine
Expand Down

0 comments on commit 71b9229

Please sign in to comment.