-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
41 lines (41 loc) · 1.08 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
{
"name": "littlecubiclegames/quests",
"description": "Quest Component",
"type": "library",
"require": {
"php": "^7.2||^8",
"symfony/workflow": "^5.3",
"roave/security-advisories": "dev-master",
"doctrine/orm": "^2.5",
"symfony/console": "^5.3"
},
"repositories": [
{"type": "vcs", "url": "https://github.com/etoa/Silex"}
],
"license": "MIT",
"authors": [
{
"name": "Stephan Vock",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"LittleCubicleGames\\Quests\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"LittleCubicleGames\\Tests\\Quests\\": "tests/"
}
},
"require-dev": {
"phpunit/phpunit": "^8.0",
"friendsofphp/php-cs-fixer": "^2.0",
"silex/silex": "dev-t/symfony-53",
"phpstan/phpstan": "^0.12",
"phpstan/phpstan-strict-rules": "^0.12",
"phpstan/phpstan-phpunit": "^0.12",
"phpstan/phpstan-deprecation-rules": "^0.12.6"
}
}