forked from ankitpokhrel/tus-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
51 lines (51 loc) · 1.15 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
43
44
45
46
47
48
49
50
51
{
"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": "^7.1.0",
"ext-json": "*",
"guzzlehttp/guzzle": "^6.3",
"nesbot/carbon": "^1.26.3 || ^2.0",
"predis/predis": "^1.1",
"ramsey/uuid": "^3.7",
"symfony/console": "^3.4.11 || ^4.0",
"symfony/event-dispatcher": "^3.4.11 || ^4.2",
"symfony/http-foundation": "^3.4.11 || ^4.0"
},
"require-dev": {
"ext-pcntl": "*",
"friendsofphp/php-cs-fixer": "^2.9",
"mockery/mockery": "^1.2.0",
"php-mock/php-mock": "^2.0",
"phpunit/phpunit": "6.5.14"
},
"autoload": {
"psr-4": {
"TusPhp\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"TusPhp\\Test\\": "tests/"
}
},
"config": {
"optimize-autoloader": true,
"sort-packages": true
},
"scripts": {
"test": "phpunit",
"cs-fixer": "php-cs-fixer fix src/ --rules=@PSR2,not_operator_with_space,single_quote"
},
"bin": [
"bin/tus"
]
}