-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcomposer.json
More file actions
35 lines (35 loc) · 813 Bytes
/
composer.json
File metadata and controls
35 lines (35 loc) · 813 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
{
"name": "sunkan/php-mogilefs",
"description": "MogileFs client for php",
"keywords": ["mogilefs"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Andreas Sundqvist",
"email": "andreas@forme.se"
}
],
"require": {
"php": "^8.0",
"psr/http-message": "~1.0",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "9.*",
"mockery/mockery": "^1.0",
"php-coveralls/php-coveralls": "^2.0",
"friends-of-phpspec/phpspec-code-coverage": "^6.2@dev",
"fzaninotto/faker": "^1.0"
},
"autoload": {
"psr-4": {
"MogileFs\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"MogileFs\\": "tests/"
}
}
}