-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
57 lines (57 loc) · 1.35 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": "ntzm/tusk",
"description": "PSR-7 compatible tus server for PHP",
"keywords": [
"tus"
],
"license": "MIT",
"require": {
"php": "^7.2",
"ext-json": "*",
"psr/event-dispatcher": "^1.0",
"psr/http-message": "^1.0",
"webmozart/assert": "^1.6"
},
"require-dev": {
"aws/aws-sdk-php": "^3.129",
"friendsofphp/php-cs-fixer": "^2.16",
"mikey179/vfsstream": "^1.6",
"phpstan/phpstan": "^0.12.2",
"phpstan/phpstan-phpunit": "^0.12.1",
"phpstan/phpstan-webmozart-assert": "^0.12.0",
"phpunit/phpunit": "^8.5",
"slim/psr7": "^1.0",
"slim/slim": "^4.3",
"vimeo/psalm": "^3.7",
"vlucas/phpdotenv": "^4.1"
},
"autoload": {
"psr-4": {
"Tusk\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"TuskTests\\": "tests/"
}
},
"suggest": {
"aws/aws-sdk-php": "Required to use S3 storage"
},
"scripts": {
"test": "phpunit",
"static-analysis": [
"phpstan analyse",
"psalm"
],
"code-style": "php-cs-fixer fix",
"review": [
"@test",
"@static-analysis",
"@code-style"
]
},
"config": {
"sort-packages": true
}
}