-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
64 lines (63 loc) · 1.69 KB
/
Copy pathcomposer.json
File metadata and controls
64 lines (63 loc) · 1.69 KB
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
{
"name": "ngfw/webpconverter",
"description": "A Laravel package that automatically converts images to WebP format, serves them efficiently, and caches the converted files to optimize performance.",
"keywords": [
"ngfw",
"laravel webpconverter",
"webpconverter"
],
"homepage": "https://github.com/ngfw/webpconverter",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Nick G",
"email": "gejadze@gmail.com",
"role": "Developer"
}
],
"require": {
"php": "^8.0",
"guzzlehttp/guzzle": "^7.9",
"illuminate/support": "^11.21"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"illuminate/config": "^11.21",
"illuminate/container": "^11.21",
"illuminate/filesystem": "^11.21",
"league/flysystem": "^3.28",
"phpoption/phpoption": "^1.9",
"vlucas/phpdotenv": "^5.6"
},
"autoload": {
"psr-4": {
"Ngfw\\WebpConverter\\": "src"
},
"files": [
"./src/Helpers/webp_helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Ngfw\\WebpConverter\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-coverage": "vendor/bin/phpunit --coverage-html coverage"
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"Ngfw\\WebpConverter\\WebpConverterServiceProvider"
],
"aliases": {
"WebpConverterFacade": "Ngfw\\WebpConverter\\WebpConverterFacade"
}
}
}
}