-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
37 lines (37 loc) · 860 Bytes
/
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
35
36
37
{
"name": "jthatch/advent-of-code-2022-php",
"authors": [
{
"name": "James Thatcher",
"email": "[email protected]"
}
],
"type": "project",
"require": {
"php": "^8.2",
"ext-bcmath": "*",
"ext-gmp": "*",
"illuminate/collections": "^v11.21.0",
"symfony/var-dumper": "^7.1"
},
"require-dev": {
"phpstan/phpstan": "^1.4",
"symplify/phpstan-extensions": "^10.3.3",
"laravel/pint": "^1.17"
},
"autoload": {
"psr-4": {
"App\\": "src"
}
},
"scripts": {
"pint": "vendor/bin/pint",
"phpstan": "phpstan analyse --ansi --memory-limit=1G"
},
"minimum-stability": "stable",
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}