File tree 4 files changed +6
-5
lines changed
4 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ public function handle()
50
50
Manifest::addEnvironment ($ environment , [
51
51
'memory ' => 1024 ,
52
52
'cli-memory ' => 512 ,
53
- 'runtime ' => $ this ->option ('docker ' ) ? 'docker ' : 'php-8.2 :al2 ' ,
53
+ 'runtime ' => $ this ->option ('docker ' ) ? 'docker ' : 'php-8.3 :al2 ' ,
54
54
'build ' => [
55
55
'COMPOSER_MIRROR_PATH_REPOS=1 composer install --no-dev ' ,
56
56
'php artisan event:cache ' ,
Original file line number Diff line number Diff line change @@ -21,6 +21,7 @@ class LocalCommand extends Command
21
21
'8.0 ' => 'laravelphp/vapor:php80 ' ,
22
22
'8.1 ' => 'laravelphp/vapor:php81 ' ,
23
23
'8.2 ' => 'laravelphp/vapor:php82 ' ,
24
+ '8.3 ' => 'laravelphp/vapor:php83 ' ,
24
25
];
25
26
26
27
/**
@@ -129,7 +130,7 @@ protected function dockerConfiguration()
129
130
],
130
131
],
131
132
'app ' => [
132
- 'image ' => static ::$ images [$ this ->option ('php ' ) ? $ this ->option ('php ' ) : '8.2 ' ],
133
+ 'image ' => static ::$ images [$ this ->option ('php ' ) ? $ this ->option ('php ' ) : '8.3 ' ],
133
134
'depends_on ' => [
134
135
0 => 'mysql ' ,
135
136
1 => 'redis ' ,
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ class Dockerfile
13
13
public static function fresh ($ environment )
14
14
{
15
15
$ content = <<<'Dockerfile'
16
- FROM laravelphp/vapor:php82
16
+ FROM laravelphp/vapor:php83
17
17
18
18
COPY . /var/task
19
19
Dockerfile;
Original file line number Diff line number Diff line change @@ -237,7 +237,7 @@ protected static function freshConfiguration($project)
237
237
$ environments ['production ' ] = array_filter ([
238
238
'memory ' => 1024 ,
239
239
'cli-memory ' => 512 ,
240
- 'runtime ' => 'php-8.2 :al2 ' ,
240
+ 'runtime ' => 'php-8.3 :al2 ' ,
241
241
'build ' => [
242
242
'COMPOSER_MIRROR_PATH_REPOS=1 composer install --no-dev ' ,
243
243
'php artisan event:cache ' ,
@@ -251,7 +251,7 @@ protected static function freshConfiguration($project)
251
251
$ environments ['staging ' ] = array_filter ([
252
252
'memory ' => 1024 ,
253
253
'cli-memory ' => 512 ,
254
- 'runtime ' => 'php-8.2 :al2 ' ,
254
+ 'runtime ' => 'php-8.3 :al2 ' ,
255
255
'build ' => [
256
256
'COMPOSER_MIRROR_PATH_REPOS=1 composer install ' ,
257
257
'php artisan event:cache ' ,
You can’t perform that action at this time.
0 commit comments