Skip to content

Commit 39cbb38

Browse files
committed
Release 4.9 preparations
1 parent 8fdf59e commit 39cbb38

2 files changed

Lines changed: 11 additions & 11 deletions

File tree

Vagrantfile

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,21 @@
22
# vi: set ft=ruby :
33

44
$software = <<SCRIPT
5-
# Downgrade to PHP 7.1
5+
# Downgrade to PHP 8.2
66
apt-add-repository -y ppa:ondrej/php
77
apt-get -yq update
8-
apt-get -yq install php7.1
8+
apt-get -yq install php8.2
99
1010
# Install MYSQL
1111
debconf-set-selections <<< "mysql-server mysql-server/root_password password root"
1212
debconf-set-selections <<< "mysql-server mysql-server/root_password_again password root"
1313
apt-get -yq install mysql-server
1414
1515
# Install required PHP packages
16-
apt-get -yq install php7.1-curl
17-
apt-get -yq install php7.1-zip
18-
apt-get -yq install php7.1-dom
19-
apt-get -yq install php7.1-mysql
16+
apt-get -yq install php8.2-curl
17+
apt-get -yq install php8.2-zip
18+
apt-get -yq install php8.2-dom
19+
apt-get -yq install php8.2-mysql
2020
2121
# Install required tools
2222
apt-get -yq install ant
@@ -57,7 +57,7 @@ echo "'composer cs-fix' to automatically fix basic style problems"
5757
SCRIPT
5858

5959
Vagrant.configure("2") do |config|
60-
config.vm.box = "bento/ubuntu-22.04"
60+
config.vm.box = "bento/ubuntu-24.04"
6161

6262
config.vm.provision "Install required software...", type: "shell", inline: $software
6363
config.vm.provision "Install Composer dependencies...", type: "shell", privileged: false, inline: $composer

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,16 +15,16 @@
1515
"ext-libxml": "*",
1616
"ext-mbstring": "*",
1717
"ext-zip": "*",
18-
"opus4-repo/opus4-common": "dev-master as 4.8.1",
19-
"opus4-repo/opus4-app-common": "dev-main",
20-
"opus4-repo/opus4-job": "dev-main as 4.8.1",
18+
"opus4-repo/opus4-common": "^4.9",
19+
"opus4-repo/opus4-app-common": "^4.9",
20+
"opus4-repo/opus4-job": "^4.9",
2121
"symfony/filesystem": "*"
2222
},
2323
"require-dev": {
2424
"phpunit/phpunit": "10.*",
2525
"opus4-repo/codesniffer": "dev-laminas",
2626
"phpmetrics/phpmetrics": "*",
27-
"opus4-repo/framework": "dev-master as 4.8.1"
27+
"opus4-repo/framework": "^4.9"
2828
},
2929
"config": {
3030
"allow-plugins": {

0 commit comments

Comments
 (0)