-
Notifications
You must be signed in to change notification settings - Fork 19
/
composer.json
42 lines (42 loc) · 1009 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
41
42
{
"name": "kornrunner/blurhash",
"description": "Pure PHP implementation of Blurhash",
"type": "library",
"license": "MIT",
"homepage": "https://github.com/kornrunner/php-blurhash",
"authors": [
{
"name": "Boris Momčilović",
"email": "boris.momcilovic@gmail.com"
}
],
"autoload": {
"psr-4": {
"kornrunner\\Blurhash\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"kornrunner\\Blurhash\\": "test"
}
},
"require": {
"php": "^7.3|^8.0"
},
"require-dev": {
"ext-gd": "*",
"ocramius/package-versions": "^1.4|^2.0",
"phpstan/phpstan": "^0.12",
"phpunit/phpunit": "^9",
"vimeo/psalm": "^4.3"
},
"archive": {
"exclude": ["/vendor", "/test", "/build"]
},
"support": {
"source": "https://github.com/kornrunner/php-blurhash.git"
},
"config": {
"sort-packages": true
}
}