-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
43 lines (43 loc) · 1.06 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
{
"name": "xdg/mime",
"description": "PHP implementation of the Freedesktop Shared MIME-info Database standard.",
"license": "MIT",
"authors": [
{
"name": "ju1ius",
"email": "[email protected]"
}
],
"keywords": ["mime", "mime-type", "xdg", "freedesktop", "guesser"],
"scripts": {
"compile-db": "XDEBUG_MODE=off php ./scripts/compile-database.php",
"update-db": "XDEBUG_MODE=off php ./scripts/update-database.php",
"test": "XDEBUG_MODE=off tools/phpunit.phar",
"coverage": "XDEBUG_MODE=coverage tools/phpunit.phar --coverage-html=tmp/coverage"
},
"autoload": {
"psr-4": {
"Xdg\\Mime\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Xdg\\Mime\\Tests\\": "tests/"
}
},
"require": {
"php": ">=8.1",
"ext-dom": "*",
"ext-libxml": "*",
"ext-xml": "*",
"symfony/filesystem": "^5.4||^6.1",
"xdg/base-directory": "^1.0",
"ju1ius/luigi": "^1.0"
},
"require-dev": {
"ext-fileinfo": "*",
"ext-posix": "*",
"ext-sockets": "*",
"symfony/stopwatch": "^6.1"
}
}