-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
34 lines (34 loc) · 1.17 KB
/
composer.json
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
{
"require": {
"php": ">=8.1",
"ext-ctype": "*"
},
"require-dev": {
"ergebnis/composer-normalize": "2.39.0",
"phpunit/phpunit": "9.6.13",
"squizlabs/php_codesniffer": "3.7.2"
},
"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/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true
}
}
}