PHPackages                             macromindonline/kelix-net-tools - 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. macromindonline/kelix-net-tools

ActiveLibrary

macromindonline/kelix-net-tools
===============================

Network Utility package for Laravel 5

v1.1.1(10y ago)012MITPHPPHP ~5.5|~7.0

Since Mar 27Pushed 8y ago1 watchersCompare

[ Source](https://github.com/macromindonline/KelixNetTools)[ Packagist](https://packagist.org/packages/macromindonline/kelix-net-tools)[ Docs](https://github.com/kelixlabs/KelixNetTools)[ RSS](/packages/macromindonline-kelix-net-tools/feed)WikiDiscussions master Synced 2mo ago

READMEChangelogDependencies (1)Versions (6)Used By (0)

KeLixNetTools
=============

[](#kelixnettools)

[![Packagist](https://camo.githubusercontent.com/3d809d92b7a6bc40d8dd2aaa15608fb2c547dcfc5be5f8f91c502b260f2201aa/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6b656c69786c6162732f6b656c69782d6e65742d746f6f6c732e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/kelixlabs/kelix-net-tools)[![Software License](https://camo.githubusercontent.com/55c0218c8f8009f06ad4ddae837ddd05301481fcf0dff8e0ed9dadda8780713e/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d627269676874677265656e2e7376673f7374796c653d666c61742d737175617265)](LICENSE.md)[![Total Downloads](https://camo.githubusercontent.com/20756f49451c4b9f1d850d3a1da0fac9a82ebefa52a8e457e07ec9d49c3b75fa/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6b656c69786c6162732f6b656c69782d6e65742d746f6f6c732e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/kelixlabs/kelix-net-tools)

PHP Library for Networking Tools (IPv4 and IPv6) Use for Laravel 5

Install
-------

[](#install)

#### Via Composer

[](#via-composer)

```
$ composer require kelixlabs/kelix-net-tools:dev-master
```

#### Via edit `composer.json`

[](#via-edit-composerjson)

```
"require": {
	"kelixlabs/kelix-net-tools": "dev-master"
}

```

Next, update Composer from the Terminal:

```
$ composer update
```

#### Add to laravel config

[](#add-to-laravel-config)

Once this operation completes, the final step is to add the service provider. Open `config/app.php`, and add a new item to the providers array.

```
'aliases' => array(
    .....
    kelixlabs\KelixNetTools\kelixNetToolsServiceProvider::class,
);
```

Now add the alias.

```
'aliases' => array(
    ......
    'NetTools' => kelixlabs\KelixNetTools\Facade\NetTools::class,
);
```

Usage
-----

[](#usage)

```
// Generate network object
$network = new NetTools;
// The default IP set to 127.0.0.1 and Netmask 255.255.255.0

// Set the IP and Netmask
$network::setIP('10.3.30.179');
$network::setNetmask('255.255.255.0');

// Get the IP and Netmask
$ip = $network::getIP();
$netmask = $network::getNetmask();

// Get Ping latency from current IP set
$latency = $network::ping()->ping();

// Get Ping latency from given ip
$latency = $network::ping('192.168.1.123')->ping();

// Get Network info from current IP set
$network = $network::network()->info;

// Get Network info from given IP and Netmask
$network = $network::network('192.168.1.123','255.255.255.0')->info;

// Get individual Network info
$CIDR = Network::network()->CIDR;
$broadcast = (string)Network::network()->broadcast;

// Get MAC address from target's IP
$mac = $network::network()->mac;

// Bonus Wake On Lan
// NetTools::WakeOnLan('Mac Address','Broadcast Address')->WakeUp();
$wakeOnLan = $network::WakeOnLan('74-27-ea-5e-74-59','10.3.30.255')->WakeUp();
```

Change log
----------

[](#change-log)

Please see [CHANGELOG](CHANGELOG.md) for more information what has changed recently.

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

[](#contributing)

Please see [CONTRIBUTING](CONTRIBUTING.md) and [CONDUCT](CONDUCT.md) for details.

Security
--------

[](#security)

If you discover any security related issues, please email :author\_email instead of using the issue tracker.

Credits
-------

[](#credits)

- [kelixlabs](https://github.com/kelixlabs)
- [All Contributors](../../contributors)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

26

—

LowBetter than 43% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity5

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity62

Established project with proven stability

 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 ~0 days

Total

5

Last Release

3693d ago

### Community

Maintainers

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

---

Top Contributors

[![kelixlabs](https://avatars.githubusercontent.com/u/1000975?v=4)](https://github.com/kelixlabs "kelixlabs (16 commits)")

---

Tags

laravellaravel 5kelixlabsKelixNetToolsNetwork Utility

### Embed Badge

![Health badge](/badges/macromindonline-kelix-net-tools/health.svg)

```
[![Health](https://phpackages.com/badges/macromindonline-kelix-net-tools/health.svg)](https://phpackages.com/packages/macromindonline-kelix-net-tools)
```

###  Alternatives

[schuppo/password-strength

This package provides a validator for ensuring strong passwords in Laravel 4 applications.

1432.7M1](/packages/schuppo-password-strength)

PHPackages © 2026

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