Owen Voke
Owen Voke
Does using `composer config allow-plugins.pestphp/pest-plugin` to add the Pest Plugin as an allowed Composer plugin in the `composer.json` not work? 🤔 That way, it only enables the Pest plugin (rather...
As far as I know, Pest doesn't support static closures for tests. Should be able to just remove the `static` keyword.
If it's a 404, this definitely should have thrown an exception (depending on your HTTP client package). Not sure why it wouldn't... I'll try and replicate this later. 👍🏻
Ah, 403 should still error though. 🤔 Just to check, are you using this package with Guzzle?
Not entirely sure why the 403 error isn't being converted to an exception, however, it looks like the `/assets` endpoint now requires an API key. Not sure if you already...
In theory it should be possible to add ` && file.status !== 'removed'` to https://github.com/hiimbex/markdownify/blob/37ff22a9c89747bce8fee11751814aa7238e8343/index.js#L4 However, when trying this, `file` only contains the `filename` property, unlike in the [API documentation](https://developer.github.com/v3/pulls/#list-pull-requests-files)....
Just to check if it's a Box issue, does it build if you run: ```shell vendor/laravel-zero/framework/bin/box compile --config box.json ``` You should end up with a file called `movie-cli.phar` in...
Sorry, I completely forgot to get back to this. I was able to replicate it locally. Unfortunately, I don't have time at the moment to investigate it further though. I'm...
Using `.` as a selector will search for all tests in the current directory, including `vendor/`. This includes tests from Hamcrest because they haven't excluded them from releases (they [did...
This should be resolved in the latest version of `pest/pest-plugin-type-coverage` (`v3.5.1`). @nunomaduro, we also have https://github.com/pestphp/pest-plugin-type-coverage/pull/47 to merge, which will resolve this issue happening again in future PHPStan updates. 👍🏻