adventofcode/composer.json
2021-12-07 09:49:53 +01:00

41 lines
974 B
JSON

{
"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",
"symfony/console": "^5",
"ext-mbstring": "*",
"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",
"style": "vendor/bin/php-cs-fixer fix",
"psalm": "vendor/bin/psalm --no-cache"
}
}