-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
42 lines (42 loc) · 1.09 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
35
36
37
38
39
40
41
42
{
"name": "orajo/zf2-tus-server",
"description": "Laminas (PHP) library for tus server, based on php-tus library by Simon Leblanc.",
"authors": [
{
"name": "Simon Leblanc",
"email": "contact@leblanc-simon.eu",
"homepage": "http://www.leblanc-simon.fr",
"role": "Developer"
},
{
"name": "Jaroslaw Wasilewski",
"email": "orajo@windowslive.com",
"role": "Developer"
}
],
"keywords": [
"tus",
"upload",
"laminas",
"flysystem"
],
"license": "MIT",
"type": "library",
"homepage": "https://github.com/Orajo/zf2-tus-server",
"autoload": {
"psr-4": {
"ZfTusServer\\": "src/"
}
},
"require": {
"php": ">=7.1.0 | ^8.0",
"laminas/laminas-http": "^2.5",
"laminas/laminas-i18n": "^2.5",
"laminas/laminas-i18n-resources": "^2.5",
"laminas/laminas-json": "^3.0",
"league/flysystem": "^3.0"
},
"require-dev": {
"phpunit/phpunit": "4.*"
}
}