#Upgrading to PHP 8.4
1 messages · Page 1 of 1 (latest)
No particular reason not to allow 8.4, I've setup a PR for it now https://github.com/dagger/dagger/pull/11109
If you're happy to wait, it should go in for the next tagged release.
In the meantime, if you want to hook into it fast you could make a fork of the PHP SDK and use that instead.
In your dagger.json where it says "php" that's actually just an alias for github.com/dagger/dagger/sdk/php@<latest-tagged-release>
So with my PR, I can just do this and run a module off of it:
{
"name": "Scratch",
"engineVersion": "v0.18.19",
"sdk": {
"source": "github.com/charjr/dagger/sdk/php@upgrade-to-8.4"
}
}
If you do decide to make your own fork, have a look at my PR and you can see how easy it is to pick your own image for the module