-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
34 lines (34 loc) · 1.02 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
{
"name": "utopia-php/compression",
"description": "A simple Compression library to handle file compression",
"type": "library",
"keywords": ["php","framework","upf","utopia","compression"],
"license": "MIT",
"authors": [],
"autoload": {
"psr-4": {"Utopia\\Compression\\":"src/Compression"}
},
"autoload-dev": {
"psr-4": {"Utopia\\Tests\\Compression\\":"tests/Compression"}
},
"scripts": {
"lint": "./vendor/bin/pint --test",
"format": "./vendor/bin/pint"
},
"require": {
"php": ">=8.0"
},
"require-dev": {
"phpunit/phpunit": "^9.3",
"vimeo/psalm": "4.0.1",
"laravel/pint": "1.2.*"
},
"suggests": {
"ext-zlib": "Needed to use the GZIP adapter",
"ext-xz": "Needed to use the XZ adapter",
"ext-brotli": "Needed to use the Brotli adapter",
"ext-lz4": "Needed to use the LZ4 adapter",
"ext-snappy": "Needed to use the Snappy adapter"
},
"minimum-stability": "dev"
}