forked from utopia-php/storage
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
28 lines (28 loc) · 713 Bytes
/
composer.json
File metadata and controls
28 lines (28 loc) · 713 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
{
"name": "utopia-php/storage",
"description": "A simple Storage library to manage application storage",
"type": "library",
"keywords": ["php","framework","upf","utopia","storage"],
"license": "MIT",
"authors": [
{
"name": "Eldad Fux",
"email": "eldad@appwrite.io"
}
],
"autoload": {
"psr-4": {"Utopia\\Storage\\":"src/Storage"}
},
"autoload-dev": {
"psr-4": {"Utopia\\Tests\\":"tests/Storage"}
},
"require": {
"php": ">=8.0",
"utopia-php/framework": "0.*.*"
},
"require-dev": {
"phpunit/phpunit": "^9.3",
"vimeo/psalm": "4.0.1"
},
"minimum-stability": "dev"
}