Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: noximo/dbgr
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 0.1.2
Choose a base ref
...
head repository: noximo/dbgr
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
  • 8 commits
  • 5 files changed
  • 2 contributors

Commits on May 6, 2019

  1. Update Dbgr.php

    fix paths of new Tracy assets
    noximo authored May 6, 2019

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    5c5e783 View commit details

Commits on Jun 21, 2019

  1. Update composer.json

    Bump utils
    noximo authored Jun 21, 2019

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    cd2a702 View commit details

Commits on Jul 6, 2019

  1. Update composer

    noximo committed Jul 6, 2019
    Copy the full SHA
    a115a3f View commit details

Commits on Sep 30, 2019

  1. leverage Tracy debug settings

    Tomáš Pospíšil committed Sep 30, 2019
    Copy the full SHA
    1035dbc View commit details

Commits on Jan 5, 2021

  1. update for new tracy

    Tomas Pospisil committed Jan 5, 2021
    Copy the full SHA
    292a4f2 View commit details
  2. update for new tracy

    Tomas Pospisil committed Jan 5, 2021
    Copy the full SHA
    2ca94ab View commit details

Commits on Dec 1, 2021

  1. Update Dbgr.php

    FIx html file output
    noximo authored Dec 1, 2021

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    619d324 View commit details

Commits on Mar 28, 2022

  1. Update for tracy 2.9

    noximo committed Mar 28, 2022
    Copy the full SHA
    934bfa9 View commit details
Showing with 226 additions and 189 deletions.
  1. +3 −3 composer.json
  2. +4 −4 ecs.yml
  3. +0 −1 phpstan.neon
  4. +218 −176 src/Dbgr.php
  5. +1 −5 src/dumper.css
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
@@ -20,14 +20,14 @@
},
"require": {
"php": ">= 7.2",
"tracy/tracy": "^2.6",
"tracy/tracy": ">=2.9",
"ext-json": "*",
"nette/utils": "^2.5.3"
"nette/utils": "^3.0"
},
"license": "MIT",
"require-dev": {
"phpstan/phpstan": "^0.11",
"symplify/easy-coding-standard": "^5.4"
"symplify/easy-coding-standard": "^6.0"
},
"scripts": {
"check": [
8 changes: 4 additions & 4 deletions ecs.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
imports:
- { resource: '%vendor_dir%/symplify/easy-coding-standard/config/psr2.yml' }
- { resource: 'vendor/symplify/easy-coding-standard/config/common.yml' }
- { resource: 'vendor/symplify/easy-coding-standard/config/clean-code.yml' }
- { resource: 'vendor/symplify/easy-coding-standard/config/php71.yml' }
- { resource: 'vendor/symplify/easy-coding-standard/config/set/psr2.yaml' }
- { resource: 'vendor/symplify/easy-coding-standard/config/set/common.yaml' }
- { resource: 'vendor/symplify/easy-coding-standard/config/set/clean-code.yaml' }
- { resource: 'vendor/symplify/easy-coding-standard/config/set/php71.yaml' }
parameters:
exclude_checkers:
- PhpCsFixer\Fixer\Operator\NotOperatorWithSuccessorSpaceFixer
1 change: 0 additions & 1 deletion phpstan.neon
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
parameters:
ignoreErrors:
- '#Function posix_isatty not found.#'
Loading