adventofcode/composer.json

49 lines
1.2 KiB
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": {
2023-12-01 11:04:30 +01:00
"php": "^8.3",
2021-12-01 22:46:07 +01:00
"ext-mbstring": "*",
2022-11-29 19:52:02 +01:00
"cebe/markdown": "^1.2",
"laravel/prompts": "^0.3.0",
2023-12-03 20:19:35 +01:00
"nette/php-generator": "^4.1",
2022-11-29 19:51:35 +01:00
"phppkg/cli-markdown": "^2.0",
"symfony/console": "^7"
2021-12-01 22:46:07 +01:00
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.3",
"jetbrains/phpstorm-attributes": "^1.0",
"nunomaduro/collision": "^8",
2024-11-26 07:50:38 +00:00
"pestphp/pest": "^3.0",
"phpstan/phpstan": "^1.2",
2024-06-27 14:50:26 +00:00
"rector/rector": "^1.0",
2023-12-01 11:04:30 +01:00
"robiningelbrecht/phpunit-pretty-print": "^1.2",
"symfony/var-dumper": "^7"
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,
2023-12-03 16:50:09 +01:00
"optimize-autoloader": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
2021-12-01 22:46:07 +01:00
}
}