forked from BKWLD/croppa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
65 lines (65 loc) · 1.68 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
{
"name": "bkwld/croppa",
"description": "Image thumbnail creation through specially formatted URLs for Laravel",
"keywords": [
"image",
"thumb",
"resize",
"laravel"
],
"homepage": "https://github.com/bkwld/croppa",
"license": "MIT",
"authors": [
{
"name": "Robert Reinhard"
},
{
"name": "Samuel De Backer"
}
],
"require": {
"php": "^8.1",
"illuminate/console": "^9.0|^10.0|^11.0",
"illuminate/support": "^9.0|^10.0|^11.0",
"illuminate/routing": "^9.0|^10.0|^11.0",
"intervention/image": "^3.6",
"league/flysystem": "^3.0",
"symfony/http-foundation": "^6.0|^7.0",
"symfony/http-kernel": "^6.0|^7.0",
"ext-gd": "*"
},
"require-dev": {
"phpunit/phpunit": "^9.5.10",
"mockery/mockery": "^1.4.4",
"nunomaduro/larastan": "^2.0",
"orchestra/testbench": "^7.5"
},
"suggest": {
"ext-exif": "Required if you want to have Croppa auto-rotate images from devices like mobile phones based on exif meta data."
},
"autoload": {
"psr-4": {
"Bkwld\\Croppa\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Bkwld\\Croppa\\Test\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"extra": {
"laravel": {
"providers": [
"Bkwld\\Croppa\\CroppaServiceProvider"
],
"aliases": {
"Croppa": "Bkwld\\Croppa\\Facades\\Croppa"
}
}
},
"minimum-stability": "dev",
"prefer-stable": true
}