adventofcode/composer.json

45 lines
1.0 KiB
JSON
Raw Normal View History

2021-12-01 22:46:07 +01:00
{
"name": "trizz/adventofcode21",
"description": "My Advent of Code 2021 solutions",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "Tristan",
"email": "me@trizz.io"
}
],
"require": {
"php": "^8.0",
"ext-mbstring": "*",
2021-12-09 12:34:10 +01:00
"symfony/console": "^5",
2021-12-01 22:46:07 +01:00
"cebe/markdown": "^1.2"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.3",
"phpunit/phpunit": "^9.5",
"symfony/var-dumper": "^6.0",
"vimeo/psalm": "^4.13",
"jetbrains/phpstorm-attributes": "^1.0"
},
"autoload": {
"psr-4": {
"AdventOfCode21\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit ./tests --testdox",
2021-12-06 23:39:16 +01:00
"style": "vendor/bin/php-cs-fixer fix",
2021-12-07 09:49:53 +01:00
"psalm": "vendor/bin/psalm --no-cache"
2021-12-09 12:34:10 +01:00
},
"config": {
"sort-packages": true,
"optimize-autoloader": true
2021-12-01 22:46:07 +01:00
}
}