-
Notifications
You must be signed in to change notification settings - Fork 59
Expand file tree
/
Copy pathcomposer.json
More file actions
38 lines (38 loc) · 1022 Bytes
/
composer.json
File metadata and controls
38 lines (38 loc) · 1022 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
37
38
{
"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": {
"php": ">=8.1",
"ext-fileinfo": "*",
"ext-zlib": "*",
"ext-curl": "*",
"ext-simplexml": "*",
"utopia-php/system": "0.*.*",
"utopia-php/telemetry": "0.2.*",
"utopia-php/validators": "0.2.*"
},
"require-dev": {
"laravel/pint": "^1.21",
"phpunit/phpunit": "^9.3"
},
"config": {
"allow-plugins": {
"php-http/discovery": false,
"tbachert/spi": false
}
}
}