-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
63 lines (63 loc) · 1.32 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "kreemer/tmx",
"type": "library",
"description": "Parsing and manipulating tmx files",
"keywords": [
"editing",
"parsing",
"tiled",
"tmx"
],
"homepage": "https://lethani.ch",
"license": "MIT",
"authors": [
{
"name": "kreemer",
"email": "kreemer@me.com",
"homepage": "https://lethani.ch",
"role": "Developer"
}
],
"require": {
"php": ">=7.4",
"ext-dom": "*",
"ext-imagick": "*",
"ext-simplexml": "*",
"intervention/image": "^2.5",
"jms/serializer-bundle": "^3.8",
"mindplay/composer-locator": "^2.1",
"symfony/config": "^5.2",
"symfony/expression-language": "^5.2",
"symfony/property-access": "^5.2",
"symfony/serializer": "^5.2"
},
"suggest": {
"ext-zlib": "*",
"ext-zstd": "*"
},
"require-dev": {
"mikey179/vfsstream": "^1.6",
"phpstan/phpstan": "^0.12.67",
"phpunit/phpunit": "^9.5"
},
"autoload": {
"psr-4": {
"Tmx\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tmx\\Tests\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit --coverage-clover coverage.xml",
"phpstan": "vendor/bin/phpstan analyse",
"docs": "phpdocumentor -d ./src -t ./docs/api"
},
"config": {
"sort-packages": true,
"platform-check": false
},
"lock": false
}