forked from ankitpokhrel/tus-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
45 lines (45 loc) · 944 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
37
38
39
40
41
42
43
44
45
{
"name": "ankitpokhrel/tus-php",
"description": "A pure PHP server and client for the tus resumable upload protocol v1.0.0",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Ankit Pokhrel",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.6",
"ext-json": "*",
"ext-iconv": "*",
"symfony/http-foundation": ">=3.4.11",
"guzzlehttp/guzzle": "^6.3",
"predis/predis": "^1.1",
"symfony/console": ">=3.4.11",
"ramsey/uuid": "^3.7",
"nesbot/carbon": "^1.24"
},
"require-dev": {
"phpunit/phpunit": "^5",
"mockery/mockery": "^1.0@dev",
"php-mock/php-mock": "dev-master",
"friendsofphp/php-cs-fixer": "^2.9@dev"
},
"autoload": {
"psr-4": {
"TusPhp\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"TusPhp\\Test\\": "tests/"
}
},
"config": {
"optimize-autoloader": true
},
"bin": [
"bin/tus"
]
}