forked from goto-bus-stop/recanalyst
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
40 lines (39 loc) · 987 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
{
"name": "recanalyst/recanalyst",
"description": "Analyzes Age of Empires 2 recorded game files.",
"version": "4.2.2",
"type": "library",
"homepage": "http://idlebeaver.ninja/recanalyst",
"autoload": {
"psr-4": { "RecAnalyst\\": "src/" }
},
"license": "GPL-3.0",
"authors": [
{
"name": "biegleux",
"homepage": "http://recanalyst.sourceforge.net"
},
{
"name": "Idle Beaver",
"email": "[email protected]",
"homepage": "http://idlebeaver.ninja"
}
],
"require": {
"php": ">= 5.6.0",
"intervention/image": "^2.3"
},
"require-dev": {
"phpunit/phpunit": "^5.5",
"webmozart/path-util": "^2.3"
},
"suggest": {
"ext-gd": "to generate minimap images using GD.",
"ext-imagick": "to generate minimap images using Imagick."
},
"scripts": {
"test": "phpunit test",
"make-resources": "php tools/makeResources.php",
"clean": "rm -rf tools/openage tools/tmp tools/cache.php"
}
}