forked from PHP-CS-Fixer/PHP-CS-Fixer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
compose.yaml
59 lines (52 loc) · 1.06 KB
/
compose.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
version: '3.8'
services:
php-7.4: &php
build:
target: dev
args:
ALPINE_VERSION: "3.16"
PHP_VERSION: "7.4"
PHP_XDEBUG_VERSION: "3.1.6"
working_dir: /fixer
volumes:
- .:/fixer
environment:
PHP_IDE_CONFIG: serverName=php-cs-fixer
PHP_CS_FIXER_ALLOW_XDEBUG: 1
php-8.0:
<<: *php
build:
args:
ALPINE_VERSION: "3.16"
PHP_VERSION: "8.0"
PHP_XDEBUG_VERSION: "3.2.2"
php-8.1:
<<: *php
build:
args:
PHP_VERSION: "8.1"
PHP_XDEBUG_VERSION: "3.2.2"
php-8.2:
<<: *php
build:
args:
PHP_VERSION: "8.2"
PHP_XDEBUG_VERSION: "3.2.2"
php-8.3:
<<: *php
build:
args:
PHP_VERSION: "8.3"
PHP_XDEBUG_VERSION: "3.3.0"
sphinx-lint:
build:
target: sphinx-lint
working_dir: /fixer
volumes:
- .:/fixer
markdown-lint:
image: registry.gitlab.com/pipeline-components/markdownlint:latest
command: mdl --git-recurse .
working_dir: /fixer
volumes:
- .:/fixer