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 .env
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
# https://symfony.com/doc/current/best_practices/configuration.html#infrastructure-related-configuration

# Define the App Environment
APP_VERSION='25.8.2'
APP_VERSION='25.8.3'
APP_ENV=dev
APP_DEBUG=0
APP_NAME="PocketCode Share"
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,4 +44,3 @@ jobs:
DEPLOY_HOST: ${{ secrets.DEPLOY_HOST }}
DEPLOY_BRANCH: main
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}

4 changes: 2 additions & 2 deletions bin/initial_setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ sudo apt upgrade
sudo apt install curl acl

## Php and its extensions, composer (php package manager)
sudo apt install php8.3-common php8.3-ldap php8.3-cli php8.3-curl php8.3-intl php8.3-apcu php8.3-imagick php8.3-mbstring php8.3-xml php8.3-fpm php8.3-mysql php8.3-gd php8.3-zip php8.3-bcmath
sudo apt install php8.4-common php8.4-ldap php8.4-cli php8.4-curl php8.4-intl php8.4-apcu php8.4-imagick php8.4-mbstring php8.4-xml php8.4-fpm php8.4-mysql php8.4-gd php8.4-zip php8.4-bcmath
sudo apt install composer

## Node and npm (node package manager)
Expand All @@ -35,7 +35,7 @@ sudo mysql_secure_installation

## Web server (Apache)
sudo apt install apache2 libapache2-mod-php
sudo a2enmod php8.3
sudo a2enmod php8.4
sudo service apache2 start

## Install google chrome browser (needed for testing with selenium/behat)
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
"dvdoug/behat-code-coverage": "5.4.*",
"friends-of-behat/mink-extension": "v2.7.5",
"friends-of-behat/symfony-extension": "2.6.*",
"friendsofphp/php-cs-fixer": "3.76.*",
"friendsofphp/php-cs-fixer": "3.86.*",
"phpstan/phpstan": "1.12.*",
"phpstan/phpstan-doctrine": "1.5.*",
"phpstan/phpstan-phpunit": "1.4.*",
Expand Down Expand Up @@ -145,7 +145,7 @@
"extra": {
"symfony": {
"allow-contrib": true,
"require": "7.2.*"
"require": "7.3.*"
}
}
}
Loading