forked from PHP-CS-Fixer/PHP-CS-Fixer
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcompose.yaml
More file actions
89 lines (80 loc) · 1.68 KB
/
compose.yaml
File metadata and controls
89 lines (80 loc) · 1.68 KB
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
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: &default_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.4.7
php-8.1:
<<: *php
build:
args:
ALPINE_VERSION: '3.22'
PHP_VERSION: '8.1'
PHP_XDEBUG_VERSION: 3.4.7
php-8.2:
<<: *php
build:
args:
ALPINE_VERSION: '3.23'
PHP_VERSION: '8.2'
PHP_XDEBUG_VERSION: 3.4.7
php-8.3:
<<: *php
build:
args:
ALPINE_VERSION: '3.23'
PHP_VERSION: '8.3'
PHP_XDEBUG_VERSION: 3.4.7
php-8.4:
<<: *php
build:
args:
ALPINE_VERSION: '3.23'
PHP_VERSION: '8.4'
PHP_XDEBUG_VERSION: 3.4.7
environment:
<<: *default_environment
XDEBUG_MODE: coverage
php-8.5:
<<: *php
build:
args:
ALPINE_VERSION: '3.23'
PHP_VERSION: '8.5'
PHP_XDEBUG_VERSION: ''
environment:
<<: *default_environment
XDEBUG_MODE: coverage
sphinx-lint:
build:
target: sphinx-lint
working_dir: /fixer
volumes:
- .:/fixer
yaml-lint:
image: sdesbure/yamllint
command: yamllint .
working_dir: /fixer
volumes:
- .:/fixer
markdown-lint:
image: registry.gitlab.com/pipeline-components/markdownlint:latest
command: mdl --git-recurse .
working_dir: /fixer
volumes:
- .:/fixer