-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
38 lines (38 loc) · 988 Bytes
/
composer.json
File metadata and controls
38 lines (38 loc) · 988 Bytes
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
{
"name": "knevelina/advent-of-code-2020",
"description": "My Advent of Code 2020 efforts.",
"type": "project",
"require-dev": {
"phpunit/phpunit": "^12.4",
"vimeo/psalm": "^6.13",
"jetbrains/phpstorm-attributes": "^1.0",
"phpstan/phpstan": "^2.1",
"laravel/pint": "^1.26"
},
"license": "MIT",
"authors": [
{
"name": "Wouter van den Brink",
"email": "git@woutervdb.com"
}
],
"require": {
"php": "^8.4",
"illuminate/collections": "^12",
"clue/graph": "^0.9",
"graphp/graphviz": "^0.2.2",
"ext-json": "*",
"vlucas/phpdotenv": "^5.6",
"guzzlehttp/guzzle": "^7.10",
"ext-ds": "*"
},
"autoload": {
"psr-4": {
"Knevelina\\AdventOfCode\\": "src/",
"Knevelina\\AdventOfCode\\Tests\\": "tests/"
},
"files": [
"src/Util/loader.php"
]
}
}