Tombstone Versions Save

Dead code detection with tombstones for PHP 🪦🧟

v1.6.0

1 month ago
  • Adding newer packages versions for PHP 8+, #31, thanks to @JimTools

v1.5.2

1 year ago
  • Add more psr/log versions, #24, thanks to @jawira

v1.5.1

1 year ago
  • Removing version on bootstrap link header #23, thanks to @wprigollopes

v1.5.0

2 years ago
  • Removed sebastian/finder-facade as a dependency and added replacement for PHP8 compatibility #20, thanks to @swarrenwecareconnectorg

v1.4.0

2 years ago

Added support for static methods as a tombstone function #17, #18, thanks to @lyudmild

v1.3.0

3 years ago

Added a configurable tombstone function name, so your tombstone function no longer needs to be named tombstone. Additional benefits:

  • The tombstone function doesn't need to be located in the global space, it can be located in a namespace now.
  • You can have multiple tombstone functions for different purposes. E.g. have a function that logs every single invocation and have another one that does random sampling.

v1.2.1

3 years ago
  • Fix log providers to be instantiated through the static create function

v1.2.0

3 years ago
  • Add custom log provider option to read tombstone logs from an arbitrary logging system

v1.1.0

3 years ago
  • PHP8 support

v1.0.1

3 years ago

Fix undefined index notices when PHP internally calls a method with a tombstone #13, thanks to @X-Coder264