PHPackages                             httproot/netconf - 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. httproot/netconf

ActiveLibrary

httproot/netconf
================

A vendor-agnostic PHP NETCONF implementation

1.0.3(3y ago)034MITPHPPHP &gt;= 5.4.16

Since Sep 19Pushed 3y ago1 watchersCompare

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

READMEChangelog (3)Dependencies (1)Versions (4)Used By (0)

netconf
=======

[](#netconf)

Examples Initializing NETCONF using password authentication and then sending a custom RPC call

```
$netConf = new NetConf(
    "192.168.0.100",
    new NetConfAuthPassword(
        [
            "username" => "lamoni",
            "password" => "phpsux"
        ]
    )
);

echo $netConf->sendRPC(
    "".
        "".
            "".
        "".
    ""
);

```

Editing the configuration of a Junos device and committing the changes

```
$netConf->editConfig(
    "

                fe-0/0/0
                Testing netconf

    ",
    'candidate',
    ['custom-param' => 'custom-value']
);

if ($netConf->commit()->isRPCReplyOK()) {
    echo "Successfully committed, dude!";
}
else {
    echo "Something's wrong, man.";
}

```

Using NETCONF's subtree filters to get certain config

```
$getUsersNames = $netConf->getConfig(
    [
       "configuration/system/login/user" => [
           [
               "name"=>"user"
           ]
       ]
    ]
);

```

###  Health Score

21

—

LowBetter than 19% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity7

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity44

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

Every ~1 days

Total

3

Last Release

1334d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/1a8dc2ffc42597adf3ea37295099160308ca1a219e338a7b63030252edb0b5fd?d=identicon)[httproot](/maintainers/httproot)

---

Top Contributors

[![httproot](https://avatars.githubusercontent.com/u/19143611?v=4)](https://github.com/httproot "httproot (8 commits)")

---

Tags

phpnetconf

### Embed Badge

![Health badge](/badges/httproot-netconf/health.svg)

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

###  Alternatives

[danog/madelineproto

Async PHP client API for the telegram MTProto protocol.

3.4k855.0k18](/packages/danog-madelineproto)[aporat/store-receipt-validator

PHP receipt validator for Apple App Store and Amazon Appstore

6503.9M9](/packages/aporat-store-receipt-validator)[leantime/leantime

Open source project management system for non-project managers. Simple like Trello, powerful like Jira. Built with neurodiversity in mind.

9.4k2.8k](/packages/leantime-leantime)[egroupware/egroupware

EGroupware extends a classic groupware with an integrated CRM-system, a secure file-server and Collabora Online Office.

2891.6k](/packages/egroupware-egroupware)[comgate/sdk

Comgate PHP SDK

13327.8k](/packages/comgate-sdk)[satispay/gbusiness-api-php-sdk

Satispay GBusiness API PHP SDK

19198.0k4](/packages/satispay-gbusiness-api-php-sdk)

PHPackages © 2026

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