-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
54 lines (54 loc) · 1.59 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
{
"name": "raneomik/watchdog-bundle",
"description": "This bundle provides a configurable watchdog for events to fire",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Marek Necesany",
"email": "marek@choosit.com",
"homepage": "https://github.com/raneomik"
}
],
"require": {
"php": "^7.4|^8.0",
"symfony/framework-bundle": "^5.4|^6.0"
},
"require-dev": {
"ekino/phpstan-banned-code": "*",
"infection/infection": "*",
"phpstan/extension-installer": "*",
"phpstan/phpstan": "*",
"phpstan/phpstan-phpunit": "*",
"phpstan/phpstan-symfony": "*",
"phpunit/phpunit": "^9.5.20|^10.1",
"psalm/plugin-symfony": "*",
"symfony/profiler-pack": "^1.0",
"symfony/yaml": "^5.4|^6.0",
"symplify/coding-standard": "*",
"symplify/easy-coding-standard": "*",
"symplify/phpstan-rules": "*",
"vimeo/psalm": "*"
},
"autoload": {
"psr-4": { "Raneomik\\WatchdogBundle\\": "src/" }
},
"autoload-dev": {
"psr-4": { "Raneomik\\WatchdogBundle\\Tests\\": "tests/" }
},
"config": {
"sort-packages": true,
"allow-plugins": {
"infection/extension-installer": true,
"phpstan/extension-installer": true
}
},
"extra": {
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true,
"infection/extension-installer": true,
"symfony/flex": true
}
}
}