-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
84 lines (84 loc) · 2.44 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
{
"name": "php-bug-catcher/bug-catcher",
"type": "symfony-bundle",
"license": "MIT",
"description": "Catch all bugs from all your applications in one place",
"minimum-stability": "stable",
"require": {
"php": ">=8.3",
"api-platform/core": "^3.3",
"easycorp/easyadmin-bundle": "^4.10",
"kregel/exception-probe": "^1.0",
"symfony/asset": "7.1.*",
"symfony/console": "7.1.*",
"symfony/form": "7.1.*",
"symfony/framework-bundle": "^7.1",
"symfony/http-client": "7.1.*",
"symfony/lock": "7.1.*",
"symfony/mime": "7.1.*",
"symfony/monolog-bundle": "^3.0",
"symfony/orm-pack": "^2.4",
"symfony/rate-limiter": "7.1.*",
"symfony/security-bundle": "^7.1",
"symfony/serializer": "7.1.*",
"symfony/stimulus-bundle": "^2.17",
"symfony/string": "7.1.*",
"symfony/translation": "^7.1",
"symfony/twig-bundle": "^7.1",
"symfony/uid": "7.1.*",
"symfony/ux-icons": "^2.17",
"symfony/ux-live-component": "^2.17",
"symfony/validator": "7.1.*",
"symfony/web-link": "7.1.*",
"symfony/webpack-encore-bundle": "^2.1",
"tito10047/doctrine-transaction": "^0.1.1",
"tito10047/php-sparkline": "^1.0",
"twig/extra-bundle": "^2.12|^3.0",
"twig/string-extra": "^3.10",
"twig/twig": "^2.12|^3.0",
"zenstruck/browser": "^1.8"
},
"conflict": {
"symfony/asset-mapper": "*"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"symfony/runtime": true
}
},
"autoload": {
"psr-4": {
"BugCatcher\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"BugCatcher\\Tests\\": "tests/"
}
},
"require-dev": {
"beberlei/doctrineextensions": "^1.5",
"dama/doctrine-test-bundle": "^8.2",
"phpunit/phpunit": "^9.5",
"symfony/css-selector": "^7.1",
"symfony/doctrine-messenger": "^7.1",
"symfony/dom-crawler": "^7.1",
"symfony/dotenv": "^7.1",
"symfony/messenger": "^7.1",
"symfony/phpunit-bridge": "^7.1",
"symfony/runtime": "^7.1",
"symfony/yaml": "^7.1",
"zenstruck/foundry": "^2.0"
},
"extra": {
"symfony": {
"allow-contrib": "true"
}
},
"scripts": {
"phpunit": "vendor/bin/phpunit --display-warnings --display-skipped --display-deprecations --display-errors --display-notices",
"coverage": "vendor/bin/phpunit --coverage-html build/reports/html --coverage-clover build/reports/clover.xml",
"csfixer": "vendor/bin/php-cs-fixer fix --allow-risky=yes"
}
}