Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .castor/context.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ function create_default_context(): Context
'project_name' => 'app',
'root_domain' => 'app.test',
'extra_domains' => [],
'php_version' => '8.4',
'php_version' => '8.5',
'docker_compose_files' => [
'docker-compose.yml',
'docker-compose.dev.yml',
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cache.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ permissions:

env:
DS_REGISTRY: "ghcr.io/jolicode/docker-starter"
DS_PHP_VERSION: "8.4"
DS_PHP_VERSION: "8.5"

jobs:
push-images:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ domain where the application will be available;
* `extra_domains` (optional): This contains extra domains where the application
will be available;

* `php_version` (optional, default: `8.3`): This is PHP version.
* `php_version` (optional, default: `8.5`): This is PHP version.

For example:

Expand Down
2 changes: 1 addition & 1 deletion castor.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ function create_default_variables(): array
],
// In order to test docker stater, we need a way to pass different values.
// You should remove the `$_SERVER` and hardcode your configuration.
'php_version' => $_SERVER['DS_PHP_VERSION'] ?? '8.4',
'php_version' => $_SERVER['DS_PHP_VERSION'] ?? '8.5',
'registry' => $_SERVER['DS_REGISTRY'] ?? null,
];
}
Expand Down