Skip to content

Commit 6023b3c

Browse files
authored
Update dependencies, drop php 7.x and php 8.0 (#1298)
1 parent 2b4a728 commit 6023b3c

File tree

3 files changed

+5
-10
lines changed

3 files changed

+5
-10
lines changed

.github/workflows/ci.yml

+1-6
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,8 @@ jobs:
1212
strategy:
1313
fail-fast: false
1414
matrix:
15-
php-versions: ['7.4', '8.0', '8.1', '8.2', '8.3']
15+
php-versions: ['8.1', '8.2', '8.3']
1616
cs-fixer: [ true ]
17-
include:
18-
- php-versions: '7.2'
19-
cs-fixer: false
20-
- php-versions: '7.3'
21-
cs-fixer: false
2217
steps:
2318
- name: Checkout
2419
uses: actions/checkout@v4

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ dist: vendor/autoload.php
1616
$(BUILD_FILES) \
1717
--exclude="*.swp" \
1818
$(BUILD_DIR)
19-
composer config platform.php 7.2 -d $(BUILD_DIR)
19+
composer config platform.php 8.1 -d $(BUILD_DIR)
2020
composer install --no-interaction --no-dev -d $(BUILD_DIR)
2121
rm $(BUILD_DIR)/composer.*
2222
cd build; zip -r baikal-$(VERSION).zip baikal/

composer.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@
66
"homepage": "https://sabre.io/baikal/",
77
"license" : "GPL-3.0-only",
88
"require": {
9-
"php" : "^7.2 || ^8.0",
9+
"php" : "^8.1",
1010
"sabre/dav" : "~4.7.0",
11-
"twig/twig" : "~3.8.0",
12-
"symfony/yaml" : "^5.4",
11+
"twig/twig" : "~3.14.0",
12+
"symfony/yaml" : "~6.4.13",
1313
"psr/log" : "^1",
1414
"ext-dom" : "*",
1515
"ext-openssl" : "*",

0 commit comments

Comments
 (0)