-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
43 lines (43 loc) · 1.15 KB
/
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
38
39
40
41
42
43
{
"name": "paddys/panic-lab-helper-core",
"description": "Calculation helper for the game \"PanicLab\" by Gigamic",
"license": "MIT",
"keywords": [ "panic", "lab", "paniclab", "game", "gigamic" ],
"require": {
"php": "^7.3.0",
"symfony/dotenv": "4.2.*",
"symfony/flex": "^1.1",
"symfony/framework-bundle": "4.2.*",
"symfony/monolog-bundle": "^3.3",
"webmozart/assert": "^1.4"
},
"require-dev": {
"roave/security-advisories": "dev-master",
"phpstan/phpstan": "^0.11.8",
"phpunit/phpunit": "^8",
"infection/infection": "^0.13.1",
"friendsofphp/php-cs-fixer": "^2.15",
"kubawerlos/php-cs-fixer-custom-fixers": "^1.13"
},
"autoload": {
"psr-4": {
"PanicLabCore\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PanicLabCore\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Patrick Stahl",
"role": "Developer"
}
],
"scripts": {
"post-update-cmd": [
"ln -sf ../../bin/pre-commit .git/hooks/pre-commit"
]
}
}