1
0
mirror of https://github.com/maximebf/php-debugbar.git synced 2025-04-21 15:12:04 +02:00

816 Commits

Author SHA1 Message Date
Barry vd. Heuvel
23b74ec92e
Dump darkmode styles for dumper (#769) 2025-04-19 07:11:36 +02:00
erikn69
3c5edea956
Summary badges in ObjectCountCollector (#767) 2025-04-11 20:38:53 +02:00
erikn69
af30cf6814
Multiple counters on ObjectCountCollector, generic widget TableVariableListWidget (#764)
* Multiple counters on ObjectCountCollector, generic widget TableVariableListWidget

* Fix editor link css

* Fix descendent sort
2025-04-11 09:44:08 +02:00
Razvan Aurariu
f7b12b3cb3
fix for PhpRedis >= 6.1.0 (#766) 2025-04-11 09:07:13 +02:00
erikn69
cf22256be7
Fix falsy values en keys (HtmlVariableListWidget) (#765) 2025-04-10 16:56:16 +02:00
cesarreyes3
8cf24e3b5d
Fix debugbar z-index (#753) 2025-04-08 17:14:13 +02:00
cesarreyes3
4b5068f540
Fix filename position on message collector (#759) 2025-04-08 17:13:56 +02:00
Barry vd. Heuvel
01a85c5b6f
Bump branch alias (#763) 2025-04-08 17:04:20 +02:00
cesarreyes3
c77fdd9744
Compact symfony var dumper, and better text (#751) 2025-03-29 16:35:37 +01:00
erikn69
ee4c574905
fix symfony var-dumper css on dark theme (#762)
* fix symfony var-dumper css on dark theme

* fix sf-dump-private
2025-03-28 19:49:41 +01:00
cesarreyes3
d4af737591
Name of the parameter easier to read in the timeline (#757) 2025-03-28 07:28:11 +01:00
erikn69
448af5e6e6
Support symfony dump render on timeline params (#760) 2025-03-28 07:27:25 +01:00
cesarreyes3
e090910409
Allow overwriting the trace finder on Messages (#758) 2025-03-28 07:26:49 +01:00
erikn69
e5b12b716d
Blacklist keys on Request (#754) 2025-03-18 10:38:58 +01:00
erikn69
f1c965f8d3
Revert aa370d0 (#756) 2025-03-18 10:37:48 +01:00
cesarreyes3
858720733d
OPT-IN Start collecting warnings, notices and deprecations on ExceptionsCollector (#748)
* OPT-IN Start collecting warnings, notices and deprecations on ExceptionsCollector

* Preserve previus handler

* use Throwable instead of Exception, Exception is deprecated, easy to remove

* style fix
2025-03-12 09:56:33 +01:00
erikn69
29fb81be6b
Reset debugbar DOM position (#752)
* Reset debugbar DOM position

* Avoid hidden dumps on ignition
2025-03-11 18:29:58 +01:00
Roberto Guido
56405224ab
fixing typo (#747)
Seems that the class suggested for `Renderable` interface is wrong in descriptive text, but right in sample code.
2025-03-03 10:54:32 +01:00
Jasper Zonneveld
d86e59a2e3
build: replace maximebf/debugbar in composer.json (#746) 2025-02-28 17:52:03 +01:00
erikn69
aaa47bda1d
Fix line-height on numbered code (#745) 2025-02-27 19:42:47 +01:00
parallels999
c6d434f9f4
Hide TimeDataCollector extending tabs (#742) 2025-02-25 16:34:50 +01:00
erikn69
16fa68da56
Hide cero count tabs (#740) v2.1.6 2025-02-21 18:47:03 +01:00
Barry vd. Heuvel
3f589bbbae
Always use random_bytes for request ID (#738) v2.1.5 2025-02-21 14:02:05 +01:00
Barry vd. Heuvel
093b837a86
Sort widgets by order (#737) 2025-02-21 13:21:40 +01:00
erikn69
9d43aa42b1
Avoid LF, \t, multiple spaces on timeline (#735) v2.1.4 2025-02-20 20:17:09 +01:00
erikn69
54be1a2e89
Query code after buttons block (#736) 2025-02-20 20:16:33 +01:00
erikn69
194bb6a92a
Avoid resize on iframes, small iframes problem (#734) 2025-02-20 12:39:28 +01:00
erikn69
db573c6186
Fix query error_message position (#733) 2025-02-20 12:39:14 +01:00
erikn69
89d07927a8
Fix XXS bug on query params (#732) 2025-02-20 12:39:00 +01:00
Barry vd. Heuvel
1403d0281d
Update links (#731) 2025-02-18 14:59:43 +01:00
Jeff Harris
8b3ce647b8
Update JavascriptRenderer.php (#730)
Update baseUrl path to reflect new installation.

---------

Co-authored-by: Barry vd. Heuvel <barryvdh@gmail.com>
v2.1.3
2025-02-18 09:37:35 +01:00
erikn69
a27cbd6bad
Fix defer data loading (#728) 2025-02-18 09:21:45 +01:00
Barry vd. Heuvel
917a032fba
Allow dataset to defer loading instead of passing all the data (#723)
* Allow dataset to defer loading instead of passing all the data

* Check data when loading

* Tweak loading

* Make configurable
v2.1.2
2025-02-17 14:39:00 +01:00
Barry vd. Heuvel
c683e78de9
Reset input appearance (#727)
* Reset input appearance

* Revert option
2025-02-17 14:38:17 +01:00
Barry vd. Heuvel
2be3ba62a7
Fix badges (#725) 2025-02-13 13:25:58 +01:00
Barry vd. Heuvel
e044ee885e
Map tooltip data (#724) v2.1.1 2025-02-13 13:08:20 +01:00
Michaël Jacobs
fa8049c5b6
Fix warning on null query parameter (#722)
* Check if hljs has language (#699)

* Fix PHP 8 warning in `TracedStatement::getSqlWithParameters()` when null was bound

Since PHP 8.0, [built-in functions like `strtr()` will emit a warning when passing `null` to required string parameters](docs):

```
strtr(): Passing null to parameter #1 ($string) of type string is deprecated
```

This can happen when e.g. binding `PDO::PARAM_NULL` to your query.

[docs]: https://www.php.net/manual/en/migration81.deprecated.php#migration81.deprecated.core.null-not-nullable-internal

---------

Co-authored-by: Barry vd. Heuvel <barryvdh@gmail.com>
2025-02-07 20:05:01 +01:00
Barry vd. Heuvel
35e7209b9f
Hide empty duration (#720) v2.1.0 2025-02-01 17:26:14 +01:00
Barry vd. Heuvel
2b9c176409
Group timeline (#719) 2025-02-01 16:19:55 +01:00
Barry vd. Heuvel
fc4f376cfc
Link time widget to timeline (#718) 2025-02-01 16:16:07 +01:00
Barry vd. Heuvel
5037594c0e
Add link for indicator (#717) 2025-02-01 14:27:48 +01:00
erikn69
603d8c7599
Fix icon on symfony HtmlDumper (#714) v2.0.1 2025-01-31 10:14:40 +01:00
Barry vd. Heuvel
2995b9b93f
Fix openhandler theme (#715)
* Copy debugbar theme to openhandler

* TWeak table layout
2025-01-31 10:10:21 +01:00
Barry vd. Heuvel
3ed7ea3d3d
Update README.md (#713) 2025-01-30 20:01:16 +01:00
Barry vd. Heuvel
8b89a30a57
Fix reset settings (#712)
* Fix reset settings

* Reset index
v2.0.0-beta2 v2.0.0
2025-01-30 19:33:55 +01:00
Barry vd. Heuvel
3fab678a22
Feat fix links (#710)
* fix links

* Tweak hover
v2.0.0-beta1
2025-01-26 16:14:22 +01:00
Barry vd. Heuvel
ba74cf8788
Set PHP to min 8 (#709)
* Set PHP to min 8

* Update matrix
2025-01-26 16:02:05 +01:00
Barry vd. Heuvel
0851b43e9c
Update composer.json (#708) 2025-01-26 15:53:59 +01:00
Barry vd. Heuvel
9bd8cdb961
Rename package to php-debugbar/debugbar and bump to 2.x (#707)
* Update composer.json

* Update matrix
2025-01-26 15:51:52 +01:00
Barry vd. Heuvel
ae1f47ca11
Dark Theme + Theme variables + UI tweaks (#703)
* Add option to set theme

* Replace colors with variables

* Use mask for icons

* Fix borders

* Use better variables

* Remove theme

* Add github dark

* Fix select

* Tweak open handler

* Fix inputs

* Fix toolbar

* Fix labels

* Add theme switcher

* Use :after for icons

* Slight tweak to base css

* Tweak restore btn

* Use font variables, tweak timeline

* TWeak openhandler

* Tweak query hover

* Remove openhandler padding

* Fix dataset switcher

* Tweak toolbar

* Move settings, simplify storage

* Add floating position and autoshow to settings

* Tweak constructor

* Add test

* Add hide empty tabs option

* Tweak loading

* Fix test

* Breathe a little

* Add screenshots to tests, test light/dark

* Run screenshot only on 8.4

* Tweak folder

* Tweak

* Rename var

* Twaek hover

* TWeak sql

* Tweak accent

* Fix overly fanatic rename

* Tweak to header
2025-01-26 15:41:20 +01:00