Skip to content

Commit

Permalink
bump PHP and Composer versions for bootstrapping
Browse files Browse the repository at this point in the history
  • Loading branch information
dzuelke committed Jun 4, 2024
1 parent 51fafd1 commit e141f8c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions buildpacks/php/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Use Buildpack API 0.10 (requires `lifecycle` 0.17 or newer)
- `buildpack.toml` declaration of `[[stacks]]` has been replaced with `[[targets]]`, currently supporting Ubuntu 20.04 and 22.04 (both `amd64`)
- Bump versions of Composer and minimal PHP for bootstrapping to 2.7.6 and 8.3.7

## [0.1.2] - 2023-10-24

Expand Down
4 changes: 2 additions & 2 deletions buildpacks/php/src/bootstrap.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ use libcnb::layer_env::Scope;
use libcnb::Env;
use std::path::PathBuf;

const PHP_VERSION: &str = "8.1.12";
const COMPOSER_VERSION: &str = "2.4.4";
const PHP_VERSION: &str = "8.3.7";
const COMPOSER_VERSION: &str = "2.7.6";
const CLASSIC_BUILDPACK_VERSION: &str = "heads/cnb-installer";
const CLASSIC_BUILDPACK_INSTALLER_SUBDIR: &str = "support/installer";

Expand Down

0 comments on commit e141f8c

Please sign in to comment.