Skip to content

Commit 7700a14

Browse files
committed
fix #6 : version 4.1.0
1 parent 24e3123 commit 7700a14

File tree

4 files changed

+10
-7
lines changed

4 files changed

+10
-7
lines changed

ChangeLog

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2025-04-04 Franz Holzinger <franz@ttproducts.de>
2+
* PhpSpreadsheet 4.1.0
3+
14
2025-01-06 Franz Holzinger <franz@ttproducts.de>
25
* PhpSpreadsheet 3.7.0
36

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ This extension brings the "PhpSpreadsheet library" PHP classes "phpoffice/phpspr
66

77
## What is the origin
88

9-
See https://github.com/PHPOffice/PhpSpreadsheet/tree/3.7.0
9+
See https://github.com/PHPOffice/PhpSpreadsheet/tree/4.1.0
1010

1111
All the library classes are available in the extension file
1212
*Library/phpoffice-phpspreadsheet.phar* which is automatically included
@@ -35,7 +35,7 @@ In case TYPO3 does not run in composer mode, the library directory can be rebuil
3535
- See chapter contributors.
3636

3737
#### For contributors
38-
- Adapt the composer.json file's version of "phpoffice/phpspreadsheet" twice (e.g. 3.7).
38+
- Adapt the composer.json file's version of "phpoffice/phpspreadsheet" twice (e.g. 4.1).
3939
- To build the TER package, you must delete the file *Libraries/phpoffice-phpspreadsheet.phar*
4040
and run the command `composer run-script extension-release` in the extension folder for generating the archive.
4141
- At the beginning you will get the question:

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@
4444
"GPL-2.0-or-later"
4545
],
4646
"require": {
47-
"typo3/cms-core": "^11.5 || ^12.4 || ^13.4",
48-
"phpoffice/phpspreadsheet": "^3.7"
47+
"typo3/cms-core": "^12.4 || ^13.4",
48+
"phpoffice/phpspreadsheet": "^4.1"
4949
},
5050
"autoload": {
5151
"psr-4": {
@@ -78,7 +78,7 @@
7878
"extension-create-libs": [
7979
"mkdir -p Libraries/temp",
8080
"[ -f $(composer config --global home)/vendor/bin/phar-composer ] || composer global require clue/phar-composer",
81-
"if [ ! -f Libraries/phpoffice-phpspreadsheet.phar ]; then cd Libraries/temp && composer require phpoffice/phpspreadsheet=^3.7 && composer config classmap-authoritative true && composer config prepend-autoloader false && composer dump-autoload; fi",
81+
"if [ ! -f Libraries/phpoffice-phpspreadsheet.phar ]; then cd Libraries/temp && composer require phpoffice/phpspreadsheet=^4.1 && composer config classmap-authoritative true && composer config prepend-autoloader false && composer dump-autoload; fi",
8282
"[ -f Libraries/phpoffice-phpspreadsheet.phar ] || $(composer config --global home)/vendor/bin/phar-composer build Libraries/temp/ Libraries/phpoffice-phpspreadsheet.phar",
8383
"chmod -x Libraries/*.phar",
8484
"rm -rf Libraries/temp"

ext_emconf.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@
88
'title' => 'Excel Library',
99
'description' => 'This provides the PhpSpreadsheet library, formerly phpExcel from phpOffice.',
1010
'category' => 'misc',
11-
'version' => '3.7.0',
11+
'version' => '4.1.0',
1212
'state' => 'stable',
1313
'author' => 'PhpSpreadsheet developers, Franz Holzinger',
1414
'author_email' => 'franz@ttproducts.de',
1515
'author_company' => 'jambage.com',
1616
'constraints' => [
1717
'depends' => [
18-
'typo3' => '11.5.0-13.4.99',
18+
'typo3' => '12.4.0-13.4.99',
1919
],
2020
'conflicts' => [
2121
],

0 commit comments

Comments
 (0)