Skip to content
Open
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
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
- name: PHP setup
uses: shivammathur/setup-php@v2
with:
php-version: '8.3'
php-version: '8.5'
extensions: mbstring, pdo, mysql, gd, zip, intl, opcache, dom, sqlite3
coverage: none

Expand All @@ -64,14 +64,14 @@ jobs:
DirectoryIndex index.php
</Directory>
<FilesMatch \".+\.ph(?:ar|p|tml)$\">
SetHandler \"proxy:unix:/run/php/php8.3-fpm.sock|fcgi://localhost\"
SetHandler \"proxy:unix:/run/php/php8.5-fpm.sock|fcgi://localhost\"
</FilesMatch>
</VirtualHost>" | sudo tee /etc/apache2/sites-available/000-default.conf
sudo a2enmod proxy_fcgi rewrite
sudo service apache2 stop
sudo service php8.3-fpm stop
sudo service php8.5-fpm stop
sudo service apache2 start
sudo service php8.3-fpm start
sudo service php8.5-fpm start

- name: Install composer
run: |
Expand Down
23 changes: 13 additions & 10 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,19 +19,19 @@
"cweagans/composer-patches": "^1.7",
"drupal/block_exclude_pages": "^2.2",
"drupal/captcha": "^2.0",
"drupal/cheeseburger_menu": "^5.0@RC",
"drupal/core-composer-scaffold": "10.6.8",
"drupal/core-project-message": "10.6.8",
"drupal/core-recommended": "10.6.8",
"drupal/cheeseburger_menu": "5.1.x-dev@dev",
"drupal/core-composer-scaffold": "11.3.13",
"drupal/core-project-message": "11.3.13",
"drupal/core-recommended": "11.3.13",
"drupal/devel": "^5.1",
"drupal/devel_entity_updates": "^4.2",
"drupal/fontawesome": "^2.26",
"drupal/fontawesome": "^3.0",
"drupal/matomo": "^1.26",
"drupal/recaptcha_v3": "^2.0",
"drupal/social_auth_github": "^4.0",
"drupal/token": "^1.15",
"drupal/webform": "^6.2.10",
"drush/drush": "^13",
"drupal/upgrade_status": "^4.3",
"drupal/webform": "^6.3@RC",
"drush/drush": "^13.7",
"kint-php/kint": "^5.1",
"opis/json-schema": "^2.3",
"symfony/dotenv": "^7.0"
Expand Down Expand Up @@ -69,6 +69,9 @@
},
"drupal/social_auth_github": {
"Github cancel login fix": "patches/social_auth_github.patch"
},
"drupal/cheeseburger_menu": {
"Fix deprecated token test base class": "patches/cheeseburger_menu-deprecated-token-test-base.patch"
}
},
"drupal-scaffold": {
Expand Down Expand Up @@ -129,7 +132,7 @@
},
"require-dev": {
"drupal/coder": "^8.3",
"drupal/core-dev": "^10.3",
"phpunit/phpunit": "^9.6"
"drupal/core-dev": "^11.3",
"phpunit/phpunit": "^11.5"
}
}
Loading