-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
36 lines (36 loc) · 925 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
{
"name": "mattiabasone/minecraft-skin",
"description": "Package for generating Minecraft avatars and skins from raw skin image",
"type": "library",
"license": "BSD-3-Clause",
"autoload": {
"psr-4": {
"MattiaBasone\\MinecraftSkin\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"MattiaBasone\\MinecraftSkin\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Mattia Basone",
"email": "[email protected]"
}
],
"require": {
"php": "^8.2",
"ext-gd": "*",
"ext-imagick": "*"
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"vimeo/psalm": "^5.6"
},
"scripts": {
"test": "./vendor/bin/phpunit",
"test-coverage": "XDEBUG_MODE=coverage ./vendor/bin/phpunit --coverage-text",
"psalm": "./vendor/bin/psalm"
}
}