Tac Tacelosky
Tac Tacelosky
I've switched to the dev branch (so that I could install phpstan 2), and haven't had any issues. Granted, my use cases are fairly straightforward and common (just adding return...
I found an excellent tutorial here: https://dev.to/sensiolabs/how-to-use-the-new-symfony-maker-command-to-work-with-github-webhooks-2c8n and here: https://ngandu.hashnode.dev/sending-github-notifications-to-telegram-a-symfony-webhook-guide
Can you give me some guidance on how to set this up as a bundle? I imagine in the GithubWebhookBundle.php there's a service that has a tag on it, and...
Perhaps it would be a good fit for https://github.com/KnpLabs/php-github-api Just brainstorming: The bundle could provide a command line tool that registers the webhook on github. ```bash bin/console github:register https://my-application --event=issue.new...
> Should this remove all cron tasks for that app? Or just a specific one? I can imagine in some situations only wanting certain cron jobs to stop, but then...
My use case: * I have a cron job that updates a sqlite database. As it's calling a translation service for every record, it's slow, which is one reason it...
> I'm loathe to introduce a new method to reference a cron task - we already have an ID Ah, then no good reason to do that.
There's probably a more elegant way, but I fixed the directory like this: ```php $_SERVER['BROWSER_SCREENSHOT_DIR'] = './screenshots'; $browser = $this->pantherBrowser(); ```
Hmm, I'm doing something wrong, even waiting 8 seconds I'm not seeing any of the css applied. FWIW, I'm in dev and using assetmapper. ``` $_SERVER['BROWSER_SCREENSHOT_DIR'] = './screenshots'; $_SERVER['PANTHER_CHROME_ARGUMENTS'] =...
Can you accept this PR, or give me some guidance on how to improve it? Thx.