Skip to content

Releases: Ticketpark/HtmlPhpExcel

2.3

07 Feb 12:38
Compare
Choose a tag to compare
  • Added support for PHP 8.4 (#45)
  • Added support for v6 of FastExcelWriter (fa090af)
  • Improved example regarding column formats (e2af107)
  • Dropped support for PHP 8.0 (6e2bd90)
  • Dropped support for PHP 8.1 (6e2bd90)

Good to know

  • Isn't dropping support for a PHP version a BC break and should cause a major version update?
    No. Why not? The Doctrine project explains it nicely:

    A BC break happens when there is an incompatible change that your package manager can't handle. For example, changing a method signature in a minor version is a no-go, since the composer version constraints mentioned above assume any minor upgrade can safely be used. However, when we drop support for an older version of PHP, composer will not consider the new version if the PHP version requirement is no longer fulfilled. Thus, you won't end up with a fatal error due to a wrong method signature, you just won't get the new version.

2.2.1

23 May 11:06
5d7f13f
Compare
Choose a tag to compare
  • Handled exception which is thrown by some versions of FastExcelWriter (78e8e12)

2.2

04 Mar 13:49
Compare
Choose a tag to compare
2.2
  • Added support for v5 of FastExcelWriter (4c80797)

2.1.2

23 Feb 15:36
Compare
Choose a tag to compare
  • Fixed custom naming of excel sheets (#42) – thank you @JurajG007!

2.1.1

23 Nov 20:05
Compare
Choose a tag to compare
  • Fixed PHP version in composer.json (57bb408)

2.1

23 Nov 19:51
42ac32f
Compare
Choose a tag to compare
2.1
  • Re-added cell merging functionality (#39, #40) – thanks to @richardDobron for providing this implementation!
  • Added support for PHP 8.3

2.0.2

09 Nov 20:43
5a910b2
Compare
Choose a tag to compare
  • Now catches and ignores JsonException on invalid _excel-styles (#38)

2.0.1

01 Nov 09:40
Compare
Choose a tag to compare
  • Added improvement to avoid PHP warning (0580259)
  • Added docs on how to set hyperlinks (329bd39)

2.0

01 Nov 09:13
31da7ef
Compare
Choose a tag to compare
2.0

This is a major update, newly based on FastExcelWriter instead of PhpSpreadsheet.

  • Faster performance.
  • Simpler syntax for styling.

Checkout README for more information on usage.

1.9

01 Nov 09:26
163ac2c
Compare
Choose a tag to compare
1.9
  • Added option to add links to cells (#34) – thanks @daveherman71 for providing this feature