-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
36 lines (36 loc) · 870 Bytes
/
composer.json
File metadata and controls
36 lines (36 loc) · 870 Bytes
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
{
"name": "indent/imgcache",
"version": "1.0.0",
"description": "Automagically cache images from any source in your Laravel app",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "ecrmnn",
"email": "danieleckermann@gmail.com"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=7.0"
},
"require-dev": {
"orchestra/testbench": "^7.2",
"phpunit/phpunit": "^9.5",
"sempro/phpunit-pretty-print": "^1.4",
"friendsofphp/php-cs-fixer": "^3.8"
},
"autoload": {
"psr-4": {
"Indent\\Imgcache\\": "src/",
"Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Indent\\Imgcache\\Providers\\ServiceProvider"
]
}
}
}