-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
42 lines (41 loc) · 1.11 KB
/
composer.json
File metadata and controls
42 lines (41 loc) · 1.11 KB
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": ">=8.1",
"ankitpokhrel/tus-php": "^2.4",
"nesbot/carbon": "^2.73",
"symfony/config": "^6.4",
"symfony/console": "^6.4",
"symfony/dependency-injection": "^6.4",
"symfony/event-dispatcher": "^6.4",
"symfony/http-kernel": "^6.4",
"symfony/routing": "^6.4"
},
"require-dev": {
"matthiasnoback/symfony-dependency-injection-test": "^6.0",
"nyholm/symfony-bundle-test": "^3.0",
"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": "efrane@meanderingsoul.com"
}
],
"minimum-stability": "stable"
}