-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
41 lines (41 loc) · 1.09 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": "rikudou/gog-downloader",
"license": "WTFPL",
"require": {
"symfony/console": "^6.0",
"symfony/http-kernel": "^6.0",
"symfony/config": "^6.0",
"symfony/dependency-injection": "^6.0",
"symfony/yaml": "^6.0",
"symfony/finder": "^6.0",
"php": "^8.2",
"symfony/http-client": "^6.0",
"symfony/framework-bundle": "^6.0",
"symfony/browser-kit": "^6.0",
"symfony/mime": "^6.0",
"symfony/css-selector": "^6.0",
"ext-simplexml": "*",
"ext-pdo": "*",
"aws/aws-sdk-php": "^3.320",
"symfony/polyfill-php84": "^1.30",
"ext-zlib": "*"
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"scripts": {
"fixer": "php-cs-fixer fix --verbose --allow-risky=yes",
"pre-autoload-dump": "Aws\\Script\\Composer\\Composer::removeUnusedServices"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.6"
},
"bin": ["bin/app.php"],
"extra": {
"aws/aws-sdk-php": [
"S3"
]
}
}