Skip to content

Commit 23807e6

Browse files
authored
Merge pull request #89 from cod43156/php8.4_support
PHP8.4 Support Added
2 parents ce1eb38 + 865b155 commit 23807e6

File tree

4 files changed

+5
-7
lines changed

4 files changed

+5
-7
lines changed

.laminas-ci.json

+1-3
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@
33
"tidy"
44
],
55
"ignore_php_platform_requirements": {
6-
"8.1": false,
7-
"8.2": false,
8-
"8.3": true
6+
"8.4": true
97
}
108
}

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"extra": {
3030
},
3131
"require": {
32-
"php": "~8.1.0 || ~8.2.0 || ~8.3.0",
32+
"php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0",
3333
"ext-dom": "*",
3434
"ext-libxml": "*",
3535
"laminas/laminas-escaper": "^2.9",

composer.lock

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/book/reader.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -461,7 +461,7 @@ Method | Description
461461
`getEnclosure()` | Returns class object (stdClass) containing the value of all attributes from a multi-media `<enclosure>` element including as class attributes: url, length, type. In accordance with the RSS Best Practices Profile of the RSS Advisory Board, no support is offers for multiple enclosures since such support forms no part of the RSS specification.
462462
`getCommentCount()` | Returns the number of comments made on this entry at the time the feed was last generated.
463463
`getCommentLink()` | Returns a URI pointing to the HTML page where comments can be made on this entry.
464-
`getCommentFeedLink([string $type = atom'|'rss'])` | Returns a URI pointing to a feed of the provided type containing all comments for this entry (type defaults to Atom/RSS depending on current feed type).
464+
`getCommentFeedLink([string $type = 'atom'\|'rss'])` | Returns a URI pointing to a feed of the provided type containing all comments for this entry (type defaults to Atom/RSS depending on current feed type).
465465
`getCategories()` | Returns a `Laminas\Feed\Reader\Collection\Category` object containing the details of any categories associated with the entry. The supported fields include "term" (the machine readable category name), "scheme" (the categorisation scheme and domain for this category), and "label" (an HTML-decoded human readable category name). Where any of the three fields are absent from the field, they are either set to the closest available alternative or, in the case of "scheme", set to `NULL`.
466466

467467
The extended API for entries is identical to that for feeds with the exception

0 commit comments

Comments
 (0)