Skip to content

Commit

Permalink
Merge pull request #89 from cod43156/php8.4_support
Browse files Browse the repository at this point in the history
PHP8.4 Support Added
  • Loading branch information
froschdesign authored Oct 9, 2024
2 parents ce1eb38 + 865b155 commit 23807e6
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 7 deletions.
4 changes: 1 addition & 3 deletions .laminas-ci.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@
"tidy"
],
"ignore_php_platform_requirements": {
"8.1": false,
"8.2": false,
"8.3": true
"8.4": true
}
}
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"extra": {
},
"require": {
"php": "~8.1.0 || ~8.2.0 || ~8.3.0",
"php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0",
"ext-dom": "*",
"ext-libxml": "*",
"laminas/laminas-escaper": "^2.9",
Expand Down
4 changes: 2 additions & 2 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/book/reader.md
Original file line number Diff line number Diff line change
Expand Up @@ -461,7 +461,7 @@ Method | Description
`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.
`getCommentCount()` | Returns the number of comments made on this entry at the time the feed was last generated.
`getCommentLink()` | Returns a URI pointing to the HTML page where comments can be made on this entry.
`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).
`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).
`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`.

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

0 comments on commit 23807e6

Please sign in to comment.