PHP Package: laminas/laminas-feed

Laminas-feed is a powerful PHP library for generating and parsing RSS and Atom feeds. It provides a simple and efficient way to create and consume syndication feeds.

Current Version: 2.23.0
Last Updated: 2024-10-09
PHP Requirement: >=7.1
Dependencies: laminas/laminas-escaper, laminas/laminas-http, laminas/laminas-servicemanager, laminas/laminas-stdlib
⚠️ To ensure full functionality, the above dependencies might be required.

Package Description

Laminas-feed is a feature-rich PHP library that simplifies the process of working with RSS and Atom feeds. It offers a wide range of functionalities, including feed generation, parsing, and manipulation. With Laminas-feed, developers can easily integrate feed capabilities into their applications.

🔗 View on GitHub

Download Latest Version: 2.23.0

Download Download v2.23.0

Code Integration Example

Make sure to include the correct namespace and class paths for proper usage.

<?php

// Example from PHPlibraries.com
require_once 'libs/laminas/laminas-feed/2.23.0/autoload.php';

use Laminas\Feed\Writer\Feed;
use Laminas\Feed\Reader\Reader;
use Laminas\Feed\Writer\Entry;


$obj = new Laminas\Feed\Writer\Feed();
echo "✅ Example created successfully.";

?>

We aim to make using PHP packages easier without Composer. If something doesn't work, let us know — we'll fix it promptly.