-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
39 lines (39 loc) · 992 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
{
"name": "arakne/php-map-parser",
"description": "Parser and renderer for Dofus maps, in PHP",
"type": "library",
"authors": [
{
"name": "Vincent Quatrevieux",
"email": "quatrevieux.vincent@gmail.com"
}
],
"repositories": [
{
"type": "vcs",
"url": "https://github.com/b2pweb/bdf-collections"
},
{
"type": "vcs",
"url": "https://github.com/vincent4vx/php-swf"
}
],
"require": {
"php": ">=7.1",
"b2pweb/bdf-collections": "~1.1",
"vincent4vx/php-swf": "dev-master",
"intervention/image": "^2.5",
"psr/cache": "^1.0",
"thadafinser/psr6-null-cache": "^0.1.0"
},
"require-dev": {
"ext-imagick": "*",
"phpunit/phpunit": "~7.0",
"cache/filesystem-adapter": "^1.0"
},
"autoload": {
"psr-4": {
"Arakne\\MapParser\\": "src"
}
}
}