forked from utopia-php/storage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
36 lines (36 loc) · 983 Bytes
/
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
{
"name": "utopia-php/storage",
"description": "A simple Storage library to manage application storage",
"type": "library",
"keywords": ["php","framework","upf","utopia","storage"],
"license": "MIT",
"authors": [],
"autoload": {
"psr-4": {"Utopia\\Storage\\":"src/Storage"}
},
"autoload-dev": {
"psr-4": {"Utopia\\Tests\\Storage\\":"tests/Storage"}
},
"scripts": {
"lint": "./vendor/bin/pint --test",
"format": "./vendor/bin/pint"
},
"require": {
"ext-fileinfo": "*",
"ext-zlib": "*",
"ext-zstd": "*",
"ext-xz": "*",
"ext-brotli": "*",
"ext-lz4": "*",
"ext-snappy": "*",
"php": ">=8.0",
"utopia-php/framework": "1.0.*",
"utopia-php/system": "0.9.*"
},
"require-dev": {
"phpunit/phpunit": "^9.3",
"vimeo/psalm": "4.0.1",
"laravel/pint": "1.2.*"
},
"minimum-stability": "stable"
}