forked from eFrane/TusBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (41 loc) · 1.17 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
{
"name": "efrane/tus-bundle",
"description": "A Symfony Bundle for ankitpokhrel/tus-php",
"type": "symfony-bundle",
"require": {
"php": ">=7.3",
"ankitpokhrel/tus-php": "^1.3 || ^2.1",
"nesbot/carbon": "^1.26 || ^2.42",
"symfony/config": "4.4 || ^5.2",
"symfony/console": "^4.4 || ^5.2",
"symfony/dependency-injection": "^4.4 || ^5.2",
"symfony/event-dispatcher": "^4.4 || ^5.2",
"symfony/http-kernel": "^4.4 || ^5.2",
"symfony/routing": "4.4 || ^5.2"
},
"require-dev": {
"matthiasnoback/symfony-dependency-injection-test": "^4.2",
"nyholm/symfony-bundle-test": "^1.6",
"phpunit/phpunit": "11.4.3",
"phpstan/phpstan": "^1.4.6",
"friendsofphp/php-cs-fixer": "^3.0"
},
"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"
}