Skip to content

Commit bee9201

Browse files
committed
Prepare a more mondern release for current TYPO3 versions
1 parent bdfce4d commit bee9201

File tree

4 files changed

+8
-12
lines changed

4 files changed

+8
-12
lines changed

.github/workflows/Tests.yml

+2-6
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,9 @@ jobs:
77
runs-on: ubuntu-latest
88
strategy:
99
matrix:
10-
typo3: [11.5, 12.4, 13.4]
11-
php: [8.0, 8.1, 8.2, 8.3]
10+
typo3: [12.4, 13.4]
11+
php: [8.1, 8.2, 8.3]
1212
exclude:
13-
- php: "8.0"
14-
typo3: "12.4"
15-
- php: "8.0"
16-
typo3: "13.4"
1713
- php: "8.1"
1814
typo3: "13.4"
1915
fail-fast: false

Classes/Resource/SvgFileRepository.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ public function findAllByStorageUids(array $storageUids): array
4949
->orderBy('sys_file.storage')
5050
->addOrderBy('sys_file.identifier')
5151
->execute()
52-
->fetchAll() // TODO; use stdClass
52+
->fetchAllAssociative()
5353
;
5454
}
5555
}

composer.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
"homepage": "https://github.com/lochmueller/sourceopt",
66
"license": "GPL-2.0-or-later",
77
"require": {
8-
"php": "^7.4||^8.0",
9-
"typo3/cms-core": "^9.5||^10.4||^11.5||^12.4||^13.4"
8+
"php": "^8.1",
9+
"typo3/cms-core": "^12.4||^13.4"
1010
},
1111
"autoload": {
1212
"psr-4": {
@@ -19,7 +19,7 @@
1919
"typo3-ter/sourceopt": "self.version"
2020
},
2121
"require-dev": {
22-
"typo3/testing-framework": "^6.4",
22+
"typo3/testing-framework": "^8.2",
2323
"friendsofphp/php-cs-fixer": "^3.3",
2424
"phpmd/phpmd": "^2.10"
2525
},

ext_emconf.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
'author_company' => null,
1212
'constraints' => [
1313
'depends' => [
14-
'typo3' => '9.5.17-13.4.99',
15-
'php' => '7.4.0-8.99.99',
14+
'typo3' => '12.4.0-13.4.99',
15+
'php' => '8.1.0-8.99.99',
1616
],
1717
],
1818
];

0 commit comments

Comments
 (0)