-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathcomposer.json
32 lines (32 loc) · 1.04 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
{
"name": "lordelph/icofileloader",
"description": "High quality PHP package for reading and converting any .ico icon file, particularly website favicons",
"keywords": ["ico", "icon", "favicon", "extract", "load", "convert"],
"homepage": "http://icofileloader.dixo.net/",
"license": "MIT",
"authors": [
{
"name": "Paul Dixon",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"require": {
"php": ">=8.0.0",
"ext-gd": "*"
},
"require-dev": {
"phpunit/phpunit": "~9",
"squizlabs/php_codesniffer": "3.*"
},
"autoload": {
"psr-4": {
"Elphin\\IcoFileLoader\\": "src"
}
},
"scripts": {
"test": "phpunit",
"check-style": "phpcs -p --standard=PSR2 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src tests",
"fix-style": "phpcbf -p --standard=PSR2 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src tests"
}
}