PHPackages                             angle/linked - 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. [Utility &amp; Helpers](/categories/utility)
4. /
5. angle/linked

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

angle/linked
============

Linked List implementation in PHP.

v1.0.0(7y ago)171MITPHPPHP ^7.0

Since Mar 10Pushed 7y agoCompare

[ Source](https://github.com/anglesoft/linked)[ Packagist](https://packagist.org/packages/angle/linked)[ RSS](/packages/angle-linked/feed)WikiDiscussions master Synced 2mo ago

READMEChangelog (1)Dependencies (2)Versions (2)Used By (0)

🖇 Linked
========

[](#-linked)

Linked List implementation in PHP.

Installation
------------

[](#installation)

```
composer require angle/linked
```

Usage
-----

[](#usage)

Creating an empty list and appending items.

```
$list = new Angle\Linked\Linked;
$list->append('PHP');
$list->append('Ruby');
$list->append('Javascript');

print $list->head->next->next->data; // Javascript
```

Prepend elements to the list:

```
$list->prepend('Golang');

print $list->head->data; // Golang
```

Print the list:

```
print $list; // Golang, PHP, Ruby, Javascript
```

Contributing
------------

[](#contributing)

Improvements are welcome! Feel free to submit pull requests.

Licence
-------

[](#licence)

MIT

Copyright © 2019 [Angle Software](https://angle.software)

###  Health Score

25

—

LowBetter than 37% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity7

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity55

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% 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

Unknown

Total

1

Last Release

2622d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/8617801?v=4)[Angle Consulting](/maintainers/angle)[@Angle](https://github.com/Angle)

---

Top Contributors

[![benvilliere](https://avatars.githubusercontent.com/u/22590566?v=4)](https://github.com/benvilliere "benvilliere (3 commits)")

---

Tags

data-structures-algorithmsphp

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/angle-linked/health.svg)

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

PHPackages © 2026

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