-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathcomposer.json
74 lines (74 loc) · 1.82 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
64
65
66
67
68
69
70
71
72
73
74
{
"name": "bepsvpt/blurhash",
"description": "A PHP implementation of BlurHash with Laravel integration.",
"license": "MIT",
"type": "library",
"keywords": [
"blurhash",
"laravel"
],
"authors": [
{
"name": "bepsvpt",
"email": "6ibrl@cpp.tw"
}
],
"homepage": "https://github.com/bepsvpt/blurhash",
"require": {
"php": "^8.0",
"ext-exif": "*",
"illuminate/support": "^8.0 || ^9.0 || ^10.0 || ^11.0 || ^12.0"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.45",
"jcupitt/vips": "^2.4",
"larastan/larastan": "^3.2",
"laravel/pint": "^1.21",
"orchestra/testbench": "^6.47 || ^7.53 || ^8.34 || ^9.12 || ^10.1",
"phpunit/phpunit": "^9.6 || ^10.5 || ^11.5 || ^12.0"
},
"suggest": {
"ext-ffi": "Required to use php-vips driver.",
"ext-gd": "Required to use GD driver.",
"ext-imagick": "Required to use Imagick driver.",
"jcupitt/vips": "Required to use php-vips driver."
},
"minimum-stability": "stable",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Bepsvpt\\Blurhash\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Bepsvpt\\Blurhash\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true
},
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"extra": {
"laravel": {
"aliases": {
"BlurHash": "Bepsvpt\\Blurhash\\Facades\\BlurHash"
},
"providers": [
"Bepsvpt\\Blurhash\\BlurHashServiceProvider"
]
}
},
"scripts": {
"analyse": "phpstan analyse --ansi -vvv --memory-limit=-1",
"format": [
"@putenv XDEBUG_MODE=off",
"pint --ansi -vvv"
],
"test": "@php -d zend.max_allowed_stack_size=-1 -d zend.assertions=1 vendor/bin/phpunit"
}
}