-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
50 lines (50 loc) · 1.38 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "migueabellan/advent-of-code-php",
"description": "My solutions to Advent of Code (PHP)",
"keywords": ["advent-of-code", "php"],
"type": "project",
"license": "MIT",
"version": "22.12.0",
"authors": [
{
"name": "Miguel Ángel Abellán",
"homepage": "https://migueabellan.github.io",
"role": "Developer"
}
],
"require": {
"php": "^8.1",
"ext-ctype": "*",
"ext-iconv": "*",
"symfony/console": "^6.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"phploc/phploc": "^7.0",
"phpstan/extension-installer": "^1.1",
"squizlabs/php_codesniffer": "^3.6",
"php-parallel-lint/php-parallel-lint": "^1.3"
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\": "tests/"
}
},
"scripts": {
"cscheck": "phpcs",
"csfix": "phpcbf",
"phpstan": "phpstan analyse ./src ./tests/ -c phpstan.neon --level=7 --no-progress -vvv --memory-limit=1024M",
"parallel": "vendor/bin/parallel-lint ./src ./tests/ --colors --exclude vendor",
"phploc": "vendor/bin/phploc ./src ./tests/ --exclude vendor"
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
}
}
}