-
-
Notifications
You must be signed in to change notification settings - Fork 205
/
composer.json
56 lines (56 loc) · 1.23 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
52
53
54
55
56
{
"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": "^8.1",
"ext-json": "*",
"guzzlehttp/guzzle": "^7.2",
"nesbot/carbon": "^2.67 || ^3.0",
"predis/predis": "^2.0.3",
"ramsey/uuid": "^4.0",
"symfony/console": "^6.0 || ^7.0",
"symfony/event-dispatcher": "^6.0 || ^7.0",
"symfony/http-foundation": "^6.0 || ^7.0",
"symfony/mime": "^6.0 || ^7.0"
},
"require-dev": {
"ext-pcntl": "*",
"friendsofphp/php-cs-fixer": "^3.0",
"mockery/mockery": "^1.4.2",
"phpunit/phpunit": "^10.5"
},
"autoload": {
"psr-4": {
"TusPhp\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"TusPhp\\Test\\": "tests/"
}
},
"config": {
"optimize-autoloader": true,
"sort-packages": true
},
"scripts": {
"test": "xdebug disable && vendor/bin/phpunit",
"test-coverage": "xdebug enable && vendor/bin/phpunit --coverage-html ./coverage"
},
"bin": [
"bin/tus"
],
"extra": {
"branch-alias": {
"dev-main": "2.3-dev"
}
}
}