A toolbar for Laravel Telescope, based on the Symfony Web Profiler.
A framework agnostic, multi-gateway payment processing library for PHP 5.6+
Some parameters made optional (#218)
Some parameters made optional
Update composer.json
Update CreatePaymentMethodRequest.php
Revert "Update composer.json"
This reverts commit 705a85edc633fd4c03f4d27b9318e41f1dabc2a3.
I ran into some issues when creating the PaymentIntent as the confirmation_method
and capture_method
parameters could not be set a value.
Update README to reflect 2.x changes and spec compatibility. (#101)
And some minor table formatting updates.
The handling of access-control-max-age
configuration was changed in https://github.com/asm89/stack-cors/commit/df153ceda9c83f6fe497907f72ab4f29c19c9b44 and then https://github.com/asm89/stack-cors/blame/7a198ec737e926eab15d29368fc6fff66772b0e2/src/CorsService.php#L205.
The README
was not also updated, and in fact the default value of false
would result in a cast to 0
, meaning users may be sending a shorter max age than they intend.
Yeah if I look at the spec I'm not 100% sure if this is actually the best way to handle false. I think it's mostly because in the CORS spec, you either set it (by defining a value) or don't (so null
), not false
.
See https://github.com/asm89/stack-cors/blob/b9c31def6a83f84b4d4a40d35996d375755f0e08/src/Asm89/Stack/CorsService.php#L119-L121
In 1.x it was never possible to set a value to 0, because that would be skipped (and set to default).
But as the default from the browser is 5 sec according to https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Access-Control-Max-Age#directives a better value would have been null
as default.
But I feel that maybe a strict check on false
would also be appropriate to skip the header..
I'm not really sure. @mikebouwmans what do you think? Does this work for you?
And which version of this library? 1.x should install dompdf 2.x, niet 0.8.6
Current version is 7.1 but you can install older versions.
If you use the Json response, it sets the correct headers and doesn't inject the debugbar.
fix openhandler close icon position (#1398)
Hello 👋🏻
In this PR I have fixed the openhandler close icon position
Do you have the latest version? From yesterday? Should be fixed already (yesterday)
Any idea how to fix this? It's not for all storeviews.
Update Debugbar to include autoshow setting (#1393)
I think that's a valid point to include, due to the fact that in a lot of software with the autoshow set to true it's impossible to use the debugbar. I'm in Laravel Nova right now, every time a notification ajax gets sent, the request I'm debugging gets removed by that setting. I've tried to add a middleware to enable that setting, but it breaks other things in beetween. Right now this it's the most polished solution. Let me know if it's ok! Thanks!
I think that's a valid point to include, due to the fact that in a lot of software with the autoshow set to true it's impossible to use the debugbar. I'm in Laravel Nova right now, every time a notification ajax gets sent, the request I'm debugging gets removed by that setting. I've tried to add a middleware to enable that setting, but it breaks other things in beetween. Right now this it's the most polished solution. Let me know if it's ok! Thanks!
Update LaravelDebugbar.php (#1391)
Fix Lumen / Illuminate 9 version detection
Lumen does return version as string like "Lumen (9.1.5) (Laravel Components ^9.21)".
This PR will extract the correct version from the returned string,
this will in turn fix the checkVersion
method,
this will in turn fix the fix for Illuminate 9 from https://github.com/barryvdh/laravel-debugbar/commit/b96f9820aaf1ff9afe945207883149e1c7afb298 to disable the Mailer in Illuminate 9
Fixed with https://github.com/barryvdh/laravel-debugbar/pull/1396
Fix restore btn styling (#1396)
Fixes styling from https://github.com/maximebf/php-debugbar/pull/451
Fixes styling from https://github.com/maximebf/php-debugbar/pull/451
Revert "font-size: initial; (#1381)" (#1395)
This reverts commit 06b16eece7194e8a5addd628942552e7c6d03d68.
Reverts barryvdh/laravel-debugbar#1381