-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
44 lines (44 loc) · 1.06 KB
/
Copy pathcomposer.json
File metadata and controls
44 lines (44 loc) · 1.06 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
{
"name": "flawe/flare-bundle",
"description": "Send Symfony errors to Flare",
"license": "MIT",
"type": "symfony-bundle",
"authors": [
{
"name": "François Lavaud-Wernert",
"email": "francois@lavaud.family"
}
],
"require": {
"php": ">=8.3",
"spatie/flare-client-php": "^3.0",
"symfony/config": "^7.0",
"symfony/dependency-injection": "^7.0",
"symfony/http-kernel": "^7.0"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.51",
"friendsofphp/php-cs-fixer": "^3.94",
"phpstan/phpstan": "^2.1"
},
"autoload": {
"psr-4": {
"Flawe\\FlareBundle\\": "src/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true
}
},
"scripts": {
"analyse": "phpstan analyse ./phpstan.neon",
"check": "php-cs-fixer check",
"fix": "php-cs-fixer fix"
},
"extra": {
"symfony": {
"allow-contrib": "true"
}
}
}