forked from RetroAchievements/RAWeb
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
31 lines (31 loc) · 743 Bytes
/
composer.json
File metadata and controls
31 lines (31 loc) · 743 Bytes
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
{
"name": "retroachievements/retroachivements-web",
"description": "The Web Server backend to run RetroAchievements.org",
"type": "project",
"config": {
"platform": {
"php": "7.1"
}
},
"require": {
"php": "^7.1",
"ext-mysqli": "*",
"ext-gd": "*",
"ext-json": "*",
"asika/autolink": "1.*",
"vlucas/phpdotenv": "^2.4",
"aws/aws-sdk-php": "^3.52"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.15",
"phpunit/phpunit": "^7.5"
},
"autoload": {
"psr-4": {
"RA\\": "src/"
}
},
"scripts": {
"fix-cs": "vendor/friendsofphp/php-cs-fixer/php-cs-fixer fix"
}
}