-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
39 lines (39 loc) · 965 Bytes
/
composer.json
File metadata and controls
39 lines (39 loc) · 965 Bytes
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
{
"name": "pana1990/php-web-profiler",
"description": "Web profiler in the browser for php application",
"keywords": ["debugbar", "profiler", "debug", "webprofiler", "logging"],
"homepage": "https://github.com/pana1990/php-web-profiler",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Daniel Gómez Pan",
"email": "pana_1990@hotmail.com"
}
],
"autoload": {
"psr-4": {
"WebProfiler\\": "src/"
}
},
"require": {
"php": ">=8",
"maximebf/debugbar": "^1.18",
"twig/twig": "^2.0 | ^3.4.3"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.13"
},
"scripts": {
"cs:fix": "php-cs-fixer fix --config=.php-cs-fixer.php --verbose",
"cs:check": "php-cs-fixer fix --config=.php-cs-fixer.php --dry-run --diff --verbose"
},
"prefer-stable": true,
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"platform": {
"php": "8.0.0"
}
}
}