PHPackages                             crucifyer/phpserial - 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. crucifyer/phpserial

ActiveLibrary

crucifyer/phpserial
===================

serial port access class

036PHP

Since Jul 31Pushed 3y ago1 watchersCompare

[ Source](https://github.com/crucifyer/phpserial)[ Packagist](https://packagist.org/packages/crucifyer/phpserial)[ RSS](/packages/crucifyer-phpserial/feed)WikiDiscussions main Synced 1mo ago

READMEChangelogDependenciesVersions (1)Used By (0)

phpserial
=========

[](#phpserial)

serial port access class

```
$ php composer.phar require "crucifyer/phpserial" "dev-main"
```

```
$xserial = new \Xeno\Net\Serial();
$xserial->setLog('serial.log', \Xeno\Net\Serial::LOG_ALL);
$xserial->setEcho(true);
$xserial->writeLn('AT');
$xserial->readLn();
$xserial->readLn();

/*
W: AT
R: AT
R: OK
 */

// listen
while(true) {
	$line = $xserial->readLn(false, 10);
	if($line == '') {
		sleep(5);
		continue;
	}
	echo $line;
}

exit;
```

###  Health Score

16

—

LowBetter than 5% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity7

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity25

Early-stage or recently created project

 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.

### Community

Maintainers

![](https://www.gravatar.com/avatar/63a41dd6bd6505e111344d4fa8ff1b62cdd0da2be3433adbdc4d7bcda1e63a82?d=identicon)[xenoside](/maintainers/xenoside)

---

Top Contributors

[![crucifyer](https://avatars.githubusercontent.com/u/1300668?v=4)](https://github.com/crucifyer "crucifyer (5 commits)")

---

Tags

php-libraryserialport

### Embed Badge

![Health badge](/badges/crucifyer-phpserial/health.svg)

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

PHPackages © 2026

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