forked from eFrane/TusBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
40 lines (40 loc) · 1.05 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
{
"name": "efrane/tus-bundle",
"description": "A Symfony Bundle for ankitpokhrel/tus-php",
"type": "symfony-bundle",
"require": {
"php": "~8.2.0 || ~8.3.0",
"ankitpokhrel/tus-php": "^2.4",
"nesbot/carbon": "^3.8",
"symfony/config": "~7.1.1",
"symfony/console": "~7.1.1",
"symfony/dependency-injection": "~7.1.1",
"symfony/event-dispatcher": "~7.1.1",
"symfony/http-kernel": "~7.1.1",
"symfony/routing": "~7.1.1",
"symfony/filesystem": "~7.1.1",
"symfony/translation": "~7.1.1"
},
"require-dev": {
"phpunit/phpunit": "^11.4",
"phpstan/phpstan": "^1.12"
},
"license": "MIT",
"autoload": {
"psr-4": {
"EFrane\\TusBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"EFrane\\TusBundle\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "eFrane",
"email": "[email protected]"
}
],
"minimum-stability": "stable"
}