-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
alchemy.yml
61 lines (58 loc) · 1.11 KB
/
alchemy.yml
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
app:
- src
tests:
engine: pest
parallel: true
paths:
- tests
files:
- '*.test.php'
coverage:
processUncoveredFiles: true
lint:
preset: PSR12
rules:
single_quote: true
phpdoc_scalar: true
no_unused_imports: true
unary_operator_spaces: true
binary_operator_spaces: true
phpdoc_var_without_name: true
trailing_comma_in_multiline: true
phpdoc_single_line_var_spacing: true
single_trait_insert_per_statement: true
not_operator_with_successor_space: false
array_syntax:
syntax: short
ordered_imports:
sort_algorithm: alpha
method_argument_space:
on_multiline: ensure_fully_multiline
keep_multiple_spaces_after_comma: true
blank_line_before_statement:
statements:
- try
- break
- throw
- return
- declare
- continue
actions:
run:
- lint
- tests
os:
- macos-latest
- ubuntu-latest
- windows-latest
php:
extensions: json, zip
versions:
- '8.3'
- '8.2'
- '8.1'
- '8.0'
- '7.4'
events:
- push
- pull_request