-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
39 lines (39 loc) · 1.26 KB
/
composer.json
File metadata and controls
39 lines (39 loc) · 1.26 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
{
"require": {
"php": ">=8.3",
"ext-ctype": "*"
},
"require-dev": {
"ergebnis/composer-normalize": "2.48.2",
"phpstan/phpstan": "2.1.32",
"phpunit/phpunit": "12.5.22",
"squizlabs/php_codesniffer": "4.0.1"
},
"autoload": {
"psr-4": {
"adventofcode\\Year2015\\": "2015/src/",
"adventofcode\\Year2015\\Test\\": "2015/tests/",
"adventofcode\\Year2018\\": "2018/src/",
"adventofcode\\Year2018\\Test\\": "2018/tests/",
"adventofcode\\Year2019\\": "2019/src/",
"adventofcode\\Year2019\\Test\\": "2019/tests/",
"adventofcode\\Year2020\\": "2020/src/",
"adventofcode\\Year2020\\Test\\": "2020/tests/",
"adventofcode\\Year2021\\": "2021/src/",
"adventofcode\\Year2021\\Test\\": "2021/tests/",
"adventofcode\\Year2022\\": "2022/src/",
"adventofcode\\Year2022\\Test\\": "2022/tests/",
"adventofcode\\Year2023\\": "2023/src/",
"adventofcode\\Year2023\\Test\\": "2023/tests/",
"adventofcode\\Year2024\\": "2024/src/",
"adventofcode\\Year2024\\Test\\": "2024/tests/",
"adventofcode\\Year2025\\": "2025/src/",
"adventofcode\\Year2025\\Test\\": "2025/tests/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true
}
}
}