-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
73 lines (73 loc) · 1.79 KB
/
composer.json
File metadata and controls
73 lines (73 loc) · 1.79 KB
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": "mhujer@gmail.com",
"homepage": "https://www.martinhujer.cz"
}
],
"require": {
"php": "~7.2",
"symfony/config": "^4.2",
"symfony/dependency-injection": "^4.2",
"symfony/event-dispatcher": "^4.2",
"symfony/expression-language": "^4.2",
"symfony/http-foundation": "^4.2",
"symfony/http-kernel": "^4.2"
},
"require-dev": {
"consistence/coding-standard": "3.5",
"jakub-onderka/php-parallel-lint": "1.0.0",
"matthiasnoback/symfony-config-test": "4.0.0",
"matthiasnoback/symfony-dependency-injection-test": "3.0.0",
"phpstan/phpstan-shim": "0.10.5",
"phpstan/phpstan-phpunit": "0.10",
"phpunit/phpunit": "7.4.4",
"php-coveralls/php-coveralls": "2.1.0",
"squizlabs/php_codesniffer": "3.3.2"
},
"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 --standard=ruleset.xml src tests",
"phpcbf": "phpcbf --standard=ruleset.xml src tests",
"phpstan": "php vendor/phpstan/phpstan-shim/phpstan.phar analyse -c phpstan.neon src tests --level 7 --no-progress",
"phpunit": "phpunit"
}
}