1
0
mirror of https://github.com/Intervention/image.git synced 2025-01-17 04:08:14 +01:00
intervention_image/docker-compose.yml

16 lines
367 B
YAML
Raw Normal View History

2023-09-28 17:48:25 +02:00
version: '3'
services:
tests:
build: ./
working_dir: /project
2023-11-23 16:14:47 +01:00
command: bash -c "composer install && ./vendor/bin/phpunit -vvv --filter=FontTest"
2023-09-28 17:48:25 +02:00
volumes:
- ./:/project
2023-09-30 11:48:42 +02:00
analysis:
build: ./
working_dir: /project
command: bash -c "composer install && ./vendor/bin/phpstan analyze --level=4 ./src"
volumes:
- ./:/project