-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
105 lines (105 loc) · 3.61 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "fdekker/log-viewer-bundle",
"description": "A log viewer bundle for Symfony 6 and up",
"keywords": [
"symfony",
"symfony-bundle",
"logs",
"log viewer"
],
"homepage": "https://github.com/frankdekker/symfony-log-viewer-bundle",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Frank Dekker",
"email": "[email protected]",
"role": "Maintainer"
}
],
"minimum-stability": "stable",
"config": {
"sort-packages": true,
"lock": false,
"allow-plugins": {
"symfony/runtime": true,
"phpstan/extension-installer": true
}
},
"require": {
"php": ">=8.1",
"ext-json": "*",
"psr/clock": "^1.0",
"symfony/config": "^6.0||^7.0",
"symfony/dependency-injection": "^6.0||^7.0",
"symfony/filesystem": "^6.0||^7.0",
"symfony/finder": "^6.0||^7.0",
"symfony/framework-bundle": "^6.0||^7.0",
"symfony/http-foundation": "^6.0||^7.0",
"symfony/http-kernel": "^6.0||^7.0",
"symfony/routing": "^6.0||^7.0",
"symfony/validator": "^6.0||^7.0"
},
"require-dev": {
"digitalrevolution/accessorpair-constraint": "^2.1.18",
"digitalrevolution/phpunit-extensions": "^1.3",
"digitalrevolution/phpunit-file-coverage-inspection": "^v2.0",
"mikey179/vfsstream": "^1.6.11",
"phpmd/phpmd": "^2.14",
"phpstan/extension-installer": "^1.3",
"phpstan/phpstan": "^2.0",
"phpstan/phpstan-phpunit": "^2.0",
"phpstan/phpstan-strict-rules": "^2.0",
"phpstan/phpstan-symfony": "^2.0",
"phpunit/phpunit": "^10.5 || ^11.0",
"roave/security-advisories": "dev-latest",
"squizlabs/php_codesniffer": "^3.6",
"symfony/browser-kit": "^6.0||^7.0",
"symfony/console": "^6.0||^7.0",
"symfony/css-selector": "^6.0||^7.0",
"symfony/http-client": "^6.0||^7.0",
"symfony/monolog-bridge": "^6.0||^7.0",
"symfony/monolog-bundle": "^3.10",
"symfony/phpunit-bridge": "^6.4||^7.0",
"symfony/runtime": "^6.0||^7.0",
"symfony/templating": "^6.0||^7.0",
"symfony/twig-bundle": "^6.0||^7.0",
"symfony/web-profiler-bundle": "^6.0||^7.0",
"symfony/yaml": "^6.0||^7.0",
"twig/twig": "^3.8.0"
},
"autoload": {
"psr-4": {
"FD\\LogViewer\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"FD\\LogViewer\\Dev\\": "dev/",
"FD\\LogViewer\\Tests\\Functional\\": "tests/Functional/",
"FD\\LogViewer\\Tests\\Integration\\": "tests/Integration/",
"FD\\LogViewer\\Tests\\Unit\\": "tests/Unit/",
"FD\\LogViewer\\Tests\\": "tests/"
}
},
"suggest": {
"ext-zip": "To use the zip download feature",
"symfony/http-client": "Required for the remote hosts feature"
},
"scripts": {
"check": ["@check:phpstan", "@check:phpmd", "@check:phpcs"],
"check:phpstan": "phpstan analyse",
"check:phpmd": "phpmd src,tests text phpmd.xml.dist",
"check:phpcs": "phpcs src tests",
"fix": "@fix:phpcbf",
"fix:phpcbf": "phpcbf src tests",
"test": "phpunit",
"test:functional": "phpunit --testsuite functional",
"test:integration": "phpunit --testsuite integration",
"test:unit": "phpunit --testsuite unit",
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd"
}
}
}