We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 659fd5c commit f56ce4aCopy full SHA for f56ce4a
2 files changed
composer.json
@@ -38,7 +38,7 @@
38
"phpstan/phpstan-phpunit": "^1.0",
39
"phpunit/phpunit": "^10 | ^11.0",
40
"spatie/image": "^3.3",
41
- "spatie/pixelmatch-php": "dev-main"
+ "spatie/pixelmatch-php": "^1.0"
42
},
43
"autoload": {
44
"psr-4": {
src/Functions/BrowsershotFunction.php
@@ -5,6 +5,7 @@
5
use Hammerstone\Sidecar\Architecture;
6
use Hammerstone\Sidecar\LambdaFunction;
7
use Hammerstone\Sidecar\Package;
8
+use Hammerstone\Sidecar\Runtime;
9
use Hammerstone\Sidecar\WarmingConfig;
10
use Illuminate\Support\Str;
11
@@ -86,7 +87,7 @@ protected function modifiedBrowserJs()
86
87
*/
88
public function runtime()
89
{
- return 'nodejs20.x';
90
+ return Runtime::NODEJS_20;
91
}
92
93
/**
0 commit comments