-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
36 lines (36 loc) · 882 Bytes
/
Copy pathcomposer.json
File metadata and controls
36 lines (36 loc) · 882 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
{
"name": "jthatch/advent-of-code-2021-php",
"authors": [
{
"name": "James Thatcher",
"email": "james@jameswt.com"
}
],
"type": "project",
"require": {
"php": "^8.1",
"ext-bcmath": "*",
"ext-gmp": "*",
"illuminate/collections": "^v9.10.1"
},
"require-dev": {
"phpstan/phpstan": "^1.4",
"friendsofphp/php-cs-fixer": "^v3.6.0",
"symplify/phpstan-extensions": "^10.0"
},
"autoload": {
"psr-4": {
"App\\": "src"
}
},
"scripts": {
"cs-fixer": "vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.dist.php",
"phpstan": "phpstan analyse --ansi --memory-limit=1G"
},
"minimum-stability": "stable",
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}