-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
65 lines (65 loc) · 2.04 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
58
59
60
61
62
63
64
65
{
"name": "spazzmarticus/tus-server",
"description": "Tus.io-protocol server implementation using PSR standards",
"type": "library",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "SpazzMarticus",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^8.2|^8.3",
"psr/event-dispatcher": "^1.0",
"psr/http-factory": "^1.0.2",
"psr/http-server-handler": "^1.0.2",
"psr/log": "^1.1|^2.0|^3.0",
"psr/simple-cache": "^1.0|^2.0|^3.0",
"ramsey/uuid": "^4.7.5"
},
"require-dev": {
"cache/filesystem-adapter": "^1.2.0",
"friendsofphp/php-cs-fixer": "^3.51.0",
"laminas/laminas-diactoros": "^3.3.1",
"laminas/laminas-httphandlerrunner": "^2.10.0",
"mikey179/vfsstream": "^1.6.11",
"monolog/monolog": "^3.5.0",
"phpunit/phpunit": "^11.0.5",
"psr/http-server-middleware": "^1.0.2",
"symfony/event-dispatcher": "^7.0.3",
"rector/rector": "^1.0.2",
"phpstan/phpstan": "^1.10.60",
"phpstan/phpstan-phpunit": "^1.3"
},
"autoload": {
"psr-4": {
"SpazzMarticus\\Tus\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SpazzMarticus\\Tus\\": ["tests/phpunit/unit/", "tests/phpunit/integration/"]
}
},
"scripts": {
"ci:phpcs": "php-cs-fixer fix",
"ci:test:phpunit": "phpunit -c build/phpunit.xml",
"ci:test:newman": "node node_modules/newman/bin/newman.js run -e tests/postman/tus.postman_environment.json tests/postman/tus.postman_collection.json --bail",
"ci:tests": [
"@ci:test:phpunit",
"@ci:test:newman"
],
"ci:dynamic": [
"@ci:tests"
],
"ci:static": [
"@ci:phpcs"
],
"ci": [
"@ci:static",
"@ci:dynamic"
]
}
}