Add basic framework
This commit is contained in:
39
composer.json
Normal file
39
composer.json
Normal file
@ -0,0 +1,39 @@
|
||||
{
|
||||
"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"
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user