-
-
Notifications
You must be signed in to change notification settings - Fork 423
Expand file tree
/
Copy pathcomposer.json
More file actions
88 lines (88 loc) · 2.93 KB
/
Copy pathcomposer.json
File metadata and controls
88 lines (88 loc) · 2.93 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
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
85
86
87
88
{
"name": "php-debugbar/php-debugbar",
"description": "Debug bar in the browser for php application",
"keywords": ["debug", "debugbar", "toolbar", "profiler", "debug bar", "dev"],
"homepage": "https://github.com/php-debugbar/php-debugbar",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Maxime Bouroumeau-Fuseau",
"email": "maxime.bouroumeau@gmail.com",
"homepage": "http://maximebf.com"
},
{
"name": "Barry vd. Heuvel",
"email": "barryvdh@gmail.com"
}
],
"require": {
"php": "^8.2",
"psr/log": "^1|^2|^3",
"symfony/var-dumper": "^5.4|^6|^7|^8"
},
"suggest": {
"php-debugbar/doctrine-bridge": "To integrate Doctrine with php-debugbar.",
"php-debugbar/monolog-bridge": "To integrate Monolog with php-debugbar.",
"php-debugbar/symfony-bridge": "To integrate Symfony with php-debugbar.",
"php-debugbar/twig-bridge": "To integrate Twig with php-debugbar."
},
"replace": {
"maximebf/debugbar": "self.version"
},
"require-dev": {
"dbrekelmans/bdi": "^1.4",
"friendsofphp/php-cs-fixer": "^3.92",
"monolog/monolog": "^3.9",
"php-debugbar/doctrine-bridge": "^3@dev",
"php-debugbar/monolog-bridge": "^1@dev",
"php-debugbar/symfony-bridge": "^1@dev",
"php-debugbar/twig-bridge": "^2@dev",
"phpstan/phpstan": "^2.1",
"phpstan/phpstan-phpunit": "^2.0",
"phpstan/phpstan-strict-rules": "^2.0",
"phpunit/phpunit": "^10",
"predis/predis": "^3.3",
"shipmonk/phpstan-rules": "^4.3",
"symfony/browser-kit": "^6.4|7.0",
"symfony/dom-crawler": "^6.4|^7",
"symfony/event-dispatcher": "^5.4|^6.4|^7.3|^8.0",
"symfony/http-foundation": "^5.4|^6.4|^7.3|^8.0",
"symfony/mailer": "^5.4|^6.4|^7.3|^8.0",
"symfony/panther": "^1|^2.1",
"twig/twig": "^3.11.2"
},
"autoload": {
"psr-4": {
"DebugBar\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"DebugBar\\Tests\\": "tests/Tests"
}
},
"scripts": {
"analyse": "@php vendor/bin/phpstan analyse --memory-limit=1G",
"demo": [
"Composer\\Config::disableProcessTimeout",
"@php -t demo -S localhost:8000"
],
"unit-test": "@php vendor/bin/phpunit --testsuite=Unit",
"browser-test": "@php vendor/bin/phpunit --testsuite=Browser",
"check-style": "vendor/bin/php-cs-fixer check -v --diff",
"fix-style": "vendor/bin/php-cs-fixer fix -v --diff",
"browser-debug": [
"@putenv PANTHER_NO_HEADLESS=1",
"@php vendor/bin/phpunit --testsuite=Browser --debug"
]
},
"extra": {
"branch-alias": {
"dev-master": "3.8-dev"
}
},
"config": {
"sort-packages": true
}
}