-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
32 lines (32 loc) · 950 Bytes
/
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
{
"name": "ns/file-upload-bundle",
"type": "symfony-bundle",
"description": "This bundle provides a simple file upload bundle",
"license": "MIT",
"minimum-stability": "stable",
"authors": [
{
"name": "Nathanael d. Noblet",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.1",
"symfony/framework-bundle": "^6.0|^7.0",
"symfony/form": "^6.0|^7.0",
"symfony/asset": "^6.0|^7.0",
"twig/twig": "^2.0||^3.0",
"ircmaxell/random-lib": "^1.1"
},
"require-dev": {
"symfony/http-foundation": "^6.0|^7.0",
"phpunit/phpunit": "^9.5",
"liip/rmt": "^1.7"
},
"autoload": {
"psr-4": { "NS\\FileUploadBundle\\": "src" }
},
"autoload-dev": {
"psr-4": { "NS\\FileUploadBundle\\Tests\\": "Tests" }
}
}