-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
44 lines (44 loc) · 983 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
38
39
40
41
42
43
44
{
"name": "250/steam-top-250",
"description": "Generates the Steam Top 250 website.",
"authors": [
{
"name": "Bilge",
"email": "[email protected]"
}
],
"license": "AGPL-3.0-only",
"require": {
"php": "8.2.*",
"ext-pdo": "*",
"250/components": "dev-master",
"250/log": "dev-master",
"250/shared": "dev-master",
"250/storage": "dev-master",
"doctrine/dbal": "^2",
"eloquent/enumeration": "^6",
"joomla/di": "^2",
"monolog/monolog": "^1",
"phptype/date": "^2",
"rybakit/msgpack": "^0.9",
"scriptfusion/static-class": "^1",
"symfony/console": "^6",
"symfony/dotenv": "^6",
"twig/twig": "^2",
"voku/html-min": "^4"
},
"require-dev": {
"roave/security-advisories": "dev-latest"
},
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": {
"ScriptFUSION\\Steam250\\SiteGenerator\\": "src"
}
},
"scripts": {
"test": "phpunit -c test"
}
}