46 lines
1.1 KiB
JSON
46 lines
1.1 KiB
JSON
{
|
|
"name": "trizz/adventofcode",
|
|
"description": "My Advent of Code solutions",
|
|
"type": "project",
|
|
"license": "MIT",
|
|
"authors": [
|
|
{
|
|
"name": "Tristan",
|
|
"email": "me@trizz.io"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": "^8.1",
|
|
"ext-mbstring": "*",
|
|
"symfony/console": "^5",
|
|
"cebe/markdown": "^1.2"
|
|
},
|
|
"require-dev": {
|
|
"friendsofphp/php-cs-fixer": "^3.3",
|
|
"jetbrains/phpstorm-attributes": "^1.0",
|
|
"nunomaduro/collision": "^5.10",
|
|
"phpstan/phpstan": "^1.2",
|
|
"phpunit/phpunit": "^9.5",
|
|
"symfony/var-dumper": "^6.0"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"trizz\\AdventOfCode\\": "src/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Tests\\": "tests/"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"test": "vendor/bin/phpunit",
|
|
"style": "PHP_CS_FIXER_IGNORE_ENV=true vendor/bin/php-cs-fixer fix",
|
|
"phpstan": "vendor/bin/phpstan analyse"
|
|
},
|
|
"config": {
|
|
"sort-packages": true,
|
|
"optimize-autoloader": true
|
|
}
|
|
}
|