-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
48 lines (48 loc) · 1.19 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
{
"name": "xdg/mime-bundle",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "ju1ius",
"email": "[email protected]"
}
],
"keywords": ["mime", "mime-type", "xdg", "freedesktop", "guesser"],
"scripts": {
"test": "XDEBUG_MODE=off tools/phpunit.phar",
"coverage:html": "XDEBUG_MODE=coverage tools/phpunit.phar --coverage-html=tmp/coverage"
},
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": {
"Xdg\\MimeBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Xdg\\MimeBundle\\Tests\\": "tests/"
}
},
"require": {
"php": ">=8.1",
"symfony/config": "^6.1",
"symfony/dependency-injection": "^6.1",
"symfony/filesystem": "^6.1",
"symfony/http-kernel": "^6.1",
"xdg/base-directory": "^1.0",
"xdg/mime": "^1.0"
},
"require-dev": {
"matthiasnoback/symfony-config-test": "^4.3",
"matthiasnoback/symfony-dependency-injection-test": "^4.3",
"nyholm/symfony-bundle-test": "^2.0",
"symfony/mime": "^6.1",
"symfony/stopwatch": "^6.1"
},
"suggest": {
"symfony/mime": "Allows using the xdg-mime database with symfony/mime type guesser system."
}
}