-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
53 lines (53 loc) · 1.33 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
{
"name": "volldigital/autosizeimages",
"version": "1.0.2",
"description": "Statamic 3 addon to automagically resize images",
"keywords": [
"responsive",
"resize",
"image"
],
"homepage": "https://voll.digital",
"authors": [
{
"name": "Enrico Costanzo",
"email": "[email protected]"
}
],
"license": "MIT",
"type": "library",
"autoload": {
"psr-4": {
"VOLLdigital\\Autosizeimages\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"VOLLdigital\\Autosizeimages\\Tests\\": "tests"
}
},
"extra": {
"statamic": {
"name": "Autosizeimages",
"description": "Automagically resize images"
},
"laravel": {
"providers": [
"VOLLdigital\\Autosizeimages\\ServiceProvider"
],
"aliases": {
"Autosizer": "VOLLdigital\\Autosizeimages\\Facades\\Autosizer"
}
}
},
"require": {
"statamic/cms": "^3.0",
"php": "^7.4 || ^8.0",
"laravel/framework": "^7.30.3 || ^8.40",
"intervention/image": "^2.6"
},
"require-dev": {
"phpunit/phpunit": "^8.0 || ^9.0",
"orchestra/testbench": "^5.0 || ^6.0"
}
}