-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
37 lines (37 loc) · 907 Bytes
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"name": "tshiamobhuda/aoc-php-solver",
"type": "project",
"license": "MIT",
"url": "https://github.com/aoc-php-solver",
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"authors": [
{
"name": "Tshiamo Bhuda",
"email": "tshiamobhuda@gmail.com"
}
],
"require-dev": {
"squizlabs/php_codesniffer": "^3.7",
"friendsofphp/php-cs-fixer": "^3.40",
"captainhook/captainhook": "^5.0",
"symfony/var-dumper": "^6.3"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"require": {
"php": ">=8.1",
"symfony/console": "^6.3",
"nette/php-generator": "^4.1",
"nikic/php-parser": "^4.17"
},
"scripts": {
"post-install-cmd": "vendor/bin/captainhook install -f --only-enabled"
}
}