-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
42 lines (42 loc) · 1.15 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
{
"name": "codex-team/hawk.symfony",
"description": "Symfony errors Catcher module for Hawk.so",
"keywords": ["hawk", "php", "error", "catcher", "monolog", "symfony"],
"type": "library",
"version": "0.0.9",
"license": "MIT",
"require": {
"php": "^7.2 || ^8.0",
"codex-team/hawk.php": "^2.2.5",
"guzzlehttp/guzzle": "^6.0 || ^7.0",
"guzzlehttp/psr7": "^2.1.1",
"jean85/pretty-package-versions": "^1.5 || ^2.0",
"monolog/monolog": "^2.2 || ^3.0",
"php-http/discovery": "^1.15",
"symfony/config": "^4.4.20||^5.0.11||^6.0||^7.0",
"symfony/dependency-injection": "^4.4.20||^5.0.11||^6.0||^7.0",
"symfony/http-kernel": "^4.4.20||^5.0.11||^6.0||^7.0",
"symfony/psr-http-message-bridge": "^1.2||^2.0||^6.4||^7.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.19||^3.40"
},
"autoload": {
"psr-4": {
"HawkBundle\\": "src/"
}
},
"extra": {
"symfony": {
"autoload": true
}
},
"scripts": {
"csfix": "vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.php --using-cache=no --verbose"
},
"config": {
"allow-plugins": {
"php-http/discovery": false
}
}
}