clockwork icon indicating copy to clipboard operation
clockwork copied to clipboard

Clockwork - php dev tools in your browser - server-side component

Results 125 clockwork issues
Sort by recently updated
recently updated
newest added

This PR adds a generic middleware, based only on the [PSR-7](https://www.php-fig.org/psr/psr-7), [PSR-15](https://www.php-fig.org/psr/psr-15) and [PSR-17](https://www.php-fig.org/psr/psr-17) standards. It should work with any framework that provides implementations for those PSR interfaces. At the...

With Doctrine DBAL 3.0.0 the current `DBALDataSource` does not work because the method `LoggerChain::addLogger` has been removed and the class `SQLLogger` is deprecated. The new way to implement logging is...

This PR comes from a discussion in #675 and fixes one obstacle to the Mezzio integration, but also a general bug that other code would be affected by. Thanks to...

Stack Laravel 10.43 + Jetstream v4.22 (inertia v0.6.11 + vue v3.2.31). php v8.1 After clockwork package installed the store methods of any resourse controller doesn't work and returns 404 page...

The file pointer is positioned at the line of the previously retrieved record. When retrieving the next record, the current one is skipped to get to the next record. After...

I'm using the monolog package version 2.9.2 and I obtain the following error: ```php PHP Fatal error: Declaration of Clockwork\\Support\\Monolog\\Handler\\ClockworkHandler::write(array $record) must be compatible with Monolog\\Handler\\AbstractProcessingHandler::write(array $record): void in /var/www/html/vendor/itsgoingd/clockwork/Clockwork/Support/Monolog/Handler/ClockworkHandler.php...

Hello, I have installed the package, and it's working fine. However, I'm facing an issue with accessing the admin panel of the project where Backpack is installed. The error points...

The Slim middleware lacks support for requests like `__clockwork//extended`, which is required to retrieve the XDebug profiler data. This PR implements the according routing. The first commit only does a...

Greetings, this PR integrates [PHPStan](https://phpstan.org/) into the Clockwork sources. The analyzer is automatically executed on every push using a Github action. As alternatives to PHPStan, there would be [Psalm](https://psalm.dev/) and...

Using PHPStan static analyzer, it found an undefined variable `$field` in `SqlSearch::resolveExactCondition()`. This bug is a remnant from a refactoring that took place in #361. The attached commit should fix...