nplesa/85tracker

PHP 8.5 compatibility tracker for Laravel 12

Installs: 6

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 0

Forks: 0

Open Issues: 0

pkg:composer/nplesa/85tracker

v1.0.5 2025-11-15 17:59 UTC

This package is auto-updated.

Last update: 2025-11-15 18:24:17 UTC


README

Laravel 12 package that scans your application for
potential issues when upgrading from PHP 8.4 → PHP 8.5, including:

  • Detection of deprecated functions
  • Auto-fixing deprecated usages
  • Checking missing PHP extensions
  • Optional runtime compatibility middleware
  • CLI tools for scanning and fixing issues
  • Developer-friendly helper utilities
  • Fully configurable behavior
  1. Instalation
composer require nplesa/85tracker
  1. Publish config:
php artisan vendor:publish --tag=tracker-config
  1. Test
php artisan tracker:scan
php artisan tracker:scan --fix

From code:

php85scanner()->scanProject();
php85scanner()->autoFix();
php85scanner()->checkExtensions();

Scan Output Example

Scanning project...
Deprecated functions found:
 - utf8_encode in app/Http/Controllers/Test.php
All required extensions are installed.
Done!

Autofix Output Example

Running autofix...
Fixed in app/Http/Controllers/Test.php
Fixed in app/Helpers/Format.php
Complete!