adventofcode/composer.json

43 lines
1003 B
JSON
Raw Normal View History

2021-12-01 22:46:07 +01:00
{
"name": "trizz/adventofcode",
"description": "My Advent of Code solutions",
2021-12-01 22:46:07 +01:00
"type": "project",
"license": "MIT",
"authors": [
{
"name": "Tristan",
"email": "me@trizz.io"
}
],
"require": {
"php": "^8.1",
2021-12-01 22:46:07 +01:00
"ext-mbstring": "*",
2022-11-29 19:52:02 +01:00
"cebe/markdown": "^1.2",
2022-11-29 19:51:35 +01:00
"phppkg/cli-markdown": "^2.0",
2022-11-29 19:52:02 +01:00
"symfony/console": "^6"
2021-12-01 22:46:07 +01:00
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.3",
"jetbrains/phpstorm-attributes": "^1.0",
2022-11-29 19:52:02 +01:00
"nunomaduro/collision": "^6",
"phpstan/phpstan": "^1.2",
2021-12-01 22:46:07 +01:00
"phpunit/phpunit": "^9.5",
2022-11-29 19:52:02 +01:00
"rector/rector": "^0.14.8",
"symfony/var-dumper": "^6.0"
2021-12-01 22:46:07 +01:00
},
"autoload": {
"psr-4": {
"trizz\\AdventOfCode\\": "src/"
2021-12-01 22:46:07 +01:00
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
2021-12-09 12:34:10 +01:00
"config": {
"sort-packages": true,
"optimize-autoloader": true
2021-12-01 22:46:07 +01:00
}
}