Skip to content

Commit 7497796

Browse files
authored
Merge pull request #111 from itsieber/master
PHP 8.2+ Kompatibilitäts-Patches für henck/rtf-html-php
2 parents 178f0f6 + e3f7f81 commit 7497796

14 files changed

Lines changed: 605 additions & 879 deletions

CHANGELOG.md

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,4 @@
5050
### Update 3 Sep ’14:
5151

5252
- Fixed bug: underlining would start but never end. Now it does.
53-
- Feature request: images are now filtered out of the output.
54-
55-
56-
### Update 5 May '24:
57-
58-
- Fix declarations of dynamic properties to run in PHP 8 environment
59-
- Created some getters and setters and fix broken tests
53+
- Feature request: images are now filtered out of the output.

README.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,3 @@ composer require henck/rtf-to-html
4949

5050
* Please note that rtf-html-php requires your PHP installation to support the `mb_convert_encoding` function. Therefore you must have the `php-mbstring` module installed. For fresh PHP installations, it will usually be there.
5151

52-
## License
53-
54-
This project is licensed under the MIT License. See the [LICENSE](LICENSE) file for details.

composer.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"description": "RTF to HTML converter in PHP",
44
"keywords": ["rtf", "converter"],
55
"type": "library",
6+
"version": "1.2",
67
"license": "MIT",
78
"authors": [
89
{
@@ -16,14 +17,14 @@
1617
]
1718
},
1819
"require": {
19-
"php": "^8.0"
20+
"ext-mbstring": "*"
2021
},
2122
"autoload": {
2223
"psr-4": {
2324
"RtfHtmlPhp\\": "src/"
2425
}
2526
},
2627
"require-dev": {
27-
"phpunit/phpunit": "^8"
28+
"phpunit/phpunit": "7"
2829
}
2930
}

0 commit comments

Comments
 (0)