forked from ankitpokhrel/tus-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
57 lines (57 loc) · 1.31 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
57
{
"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": "hello@ankit.pl"
}
],
"require": {
"php": "^7.2.5 || ^8.0",
"ext-json": "*",
"guzzlehttp/guzzle": "^6.3 || ^7.0",
"nesbot/carbon": "^1.26.3 || ^2.0",
"predis/predis": "^1.1",
"ramsey/uuid": "^3.7 || ^4.0",
"symfony/console": "^5.0",
"symfony/event-dispatcher": "^5.0",
"symfony/http-foundation": "^5.0.7",
"symfony/mime": "^5.0.9"
},
"require-dev": {
"ext-pcntl": "*",
"mockery/mockery": "^1.3.0 || ^1.4.2",
"phpunit/phpunit": "^8.5 || ^9.4"
},
"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",
"cs-fixer": "vendor/bin/php-cs-fixer fix",
"lint": "vendor/bin/php-cs-fixer fix --diff --dry-run"
},
"bin": [
"bin/tus"
],
"extra": {
"branch-alias": {
"dev-master": "2.1-dev"
}
}
}