PHPackages                             lelesys/news - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. lelesys/news

ActiveNeos-package

lelesys/news
============

News plugin for Neos

4.0.9(3y ago)157.8k↓100%7GPL-3.0-or-laterPHP

Since Mar 29Pushed 2y ago19 watchersCompare

[ Source](https://github.com/lelesys/Lelesys.News)[ Packagist](https://packagist.org/packages/lelesys/news)[ RSS](/packages/lelesys-news/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (10)Dependencies (1)Versions (23)Used By (0)

Lelesys.News
============

[](#lelesysnews)

Please find documentation at following link:

Even though it is for the first version, it still is valid.

NeosCMS 4.0 support
-------------------

[](#neoscms-40-support)

By default Neos site kickstarter does not anymore create page object like "page = Neos.Neos:Page" but it creates separate Page nodetype based on your site package key e.g. My.Site:Page.

To make the news package work you need to add following lines in your site's Root.fusion:

```
prototype(Lelesys.News:Folder) < prototype(My.Site:Page)
prototype(Lelesys.News:Category) < prototype(My.Site:Page)
prototype(Lelesys.News:News) < prototype(My.Site:Page)

```

In Fusion, if you have path of your main content object different than body.content.main then you can do following to override it:

```
prototype(Lelesys.News:News) {
    body.content.something = Lelesys.News:NewsRenderer
}

```

Using Elasticsearch
-------------------

[](#using-elasticsearch)

To speed up handling of news filtering and sorting, using Elasticsearch is recommended.

If you have the installed `flowpack/elasticsearch-contentrepositoryadaptor` (and its dependencies), news will be indexed correctly. If you already have created news before installing the Elasticsearch adaptor, run `./flow nodeindex:build` to create the index.

The configure the plugin to use Elasticsearch to fetch the news add this to your TypoScript:

```
prototype(Lelesys.News:List) {
    newsCollection = Lelesys.News:ElasticsearchNewsCollector
}

prototype(Lelesys.News:Latest) {
    newsCollection.value.@process.slice = ${value.limit(String.toInteger(configuration.numberOfItems))}
    newsCollection.value.@process.toArray = ${value.toArray()}
    newsCollection.value.@process.toArray.@position = 'after execute'
}

```

The list view fetches a maximum of 1000 items (before pagination is applied!), this can be adjusted with:

```
newsCollection = Lelesys.News:ElasticsearchNewsCollector {
    value.@process.limit = ${value.limit(42)}
}

```

To enable logging of the queries sent to Elasticsearch (`Data/Logs/ElasticSearch.log`), you can do:

```
newsCollection = Lelesys.News:ElasticsearchNewsCollector {
    value.@process.log = ${value.log()}
    value.@process.log.@position = 'before execute'
}

```

Similarly you can adjust the query by adding further filters, the `value` in the collector is an instance of the `ElasticSearchQueryBuilder`:

```
newsCollection = Lelesys.News:ElasticsearchNewsCollector {
    # exclude "hidden in menu" entries from the List`s news collection
    value.@process.filterHiddenInIndex= ${value.queryFilter('term', {'_hiddenInIndex': true}, 'must_not')}
    value.@process.filterHiddenInIndex.@position = 'before execute'
}

```

###  Health Score

40

—

FairBetter than 88% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity32

Limited adoption so far

Community22

Small or concentrated contributor base

Maturity73

Established project with proven stability

 Bus Factor1

Top contributor holds 54.4% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~149 days

Recently: every ~317 days

Total

22

Last Release

1279d ago

Major Versions

1.0.x-dev → 2.1.x-dev2016-07-18

2.2.x-dev → 3.0.02018-01-23

2.0.0 → 3.0.12018-01-25

3.0.1 → 4.0.02018-11-12

### Community

Maintainers

![](https://www.gravatar.com/avatar/aa9c8b1a3f46cf80f3465f48780381b3648cb888f5a1eb519807d13b190ee85a?d=identicon)[pankajlele](/maintainers/pankajlele)

---

Top Contributors

[![pankajlele](https://avatars.githubusercontent.com/u/550239?v=4)](https://github.com/pankajlele "pankajlele (37 commits)")[![kdambekalns](https://avatars.githubusercontent.com/u/95873?v=4)](https://github.com/kdambekalns "kdambekalns (16 commits)")[![desaisagar](https://avatars.githubusercontent.com/u/4299507?v=4)](https://github.com/desaisagar "desaisagar (4 commits)")[![sushantchari](https://avatars.githubusercontent.com/u/6370534?v=4)](https://github.com/sushantchari "sushantchari (4 commits)")[![vedikabapat](https://avatars.githubusercontent.com/u/5267620?v=4)](https://github.com/vedikabapat "vedikabapat (2 commits)")[![jdreesen](https://avatars.githubusercontent.com/u/424602?v=4)](https://github.com/jdreesen "jdreesen (2 commits)")[![hemalatajadhav](https://avatars.githubusercontent.com/u/8995037?v=4)](https://github.com/hemalatajadhav "hemalatajadhav (1 commits)")[![dimaip](https://avatars.githubusercontent.com/u/837032?v=4)](https://github.com/dimaip "dimaip (1 commits)")[![scriptonepankaj](https://avatars.githubusercontent.com/u/134755480?v=4)](https://github.com/scriptonepankaj "scriptonepankaj (1 commits)")

### Embed Badge

![Health badge](/badges/lelesys-news/health.svg)

```
[![Health](https://phpackages.com/badges/lelesys-news/health.svg)](https://phpackages.com/packages/lelesys-news)
```

###  Alternatives

[neos/neos-ui

Neos CMS UI written in React

2661.0M104](/packages/neos-neos-ui)[neos/form-builder

Flow Form Framework integration into Neos CMS

19347.1k18](/packages/neos-form-builder)[neos/demo

Site package for the Neos Demo Site

18181.0k6](/packages/neos-demo)[flowpack/media-ui

This module allows managing media assets including pictures, videos, audio and documents.

2184.5k2](/packages/flowpack-media-ui)[kaufmanndigital/gdpr-cookieconsent

A ready-to-run package, that integrates an advanced cookie consent banner into your Neos CMS site.

2540.7k](/packages/kaufmanndigital-gdpr-cookieconsent)[flowpack/neos-matomo

Track visits of your Neos site with the Matomo Open Analytics Platform!

2337.6k](/packages/flowpack-neos-matomo)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
