-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
73 lines (73 loc) · 1.75 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
{
"name": "mhujer/javascript-error-handler-bundle",
"type": "symfony-bundle",
"description": "Converts JavaScript errors to alerts, so you won't miss them if you don't have the browser console open.",
"keywords": [
"javascript",
"symfony",
"bundle"
],
"homepage": "https://github.com/mhujer/JavaScriptErrorHandlerBundle",
"license": "MIT",
"authors": [
{
"name": "Martin Hujer",
"email": "[email protected]",
"homepage": "https://www.martinhujer.cz"
}
],
"require": {
"php": "~8.0",
"symfony/config": "^5.4||^6.0",
"symfony/dependency-injection": "^5.4||^6.0",
"symfony/event-dispatcher": "^5.4||^6.0",
"symfony/expression-language": "^5.4||^6.0",
"symfony/http-foundation": "^5.4||^6.0",
"symfony/http-kernel": "^5.4||^6.0"
},
"require-dev": {
"composer/package-versions-deprecated": "1.11.99.4",
"consistence-community/coding-standard": "3.11.1",
"matthiasnoback/symfony-config-test": "4.3.0",
"matthiasnoback/symfony-dependency-injection-test": "4.3.0",
"php-parallel-lint/php-parallel-lint": "1.3.1",
"phpstan/phpstan": "1.2.0",
"phpstan/phpstan-phpunit": "1.0.0",
"phpstan/phpstan-symfony": "1.0.2",
"phpunit/phpunit": "9.5.10"
},
"autoload": {
"psr-4": {
"Mhujer\\JavaScriptErrorHandlerBundle\\": [
"src"
]
},
"classmap": [
"src"
]
},
"autoload-dev": {
"psr-4": {
"Mhujer\\JavaScriptErrorHandlerBundle\\": [
"tests"
]
}
},
"config": {
"sort-packages": true
},
"scripts": {
"build": [
"@composer validate --no-check-all",
"@phplint",
"@phpcs",
"@phpstan",
"@phpunit"
],
"phplint": "parallel-lint src tests",
"phpcs": "phpcs",
"phpcbf": "phpcbf",
"phpstan": "phpstan analyse -c phpstan.neon src tests --level 8 --no-progress",
"phpunit": "phpunit"
}
}