PHPackages                             webino/develop - 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. webino/develop

ActiveLibrary

webino/develop
==============

PHP projects development support.

1.0.0(6y ago)116BSD-3-ClausePHPPHP ~7.1

Since Jun 22Pushed 6y ago1 watchersCompare

[ Source](https://github.com/webino/develop)[ Packagist](https://packagist.org/packages/webino/develop)[ RSS](/packages/webino-develop/feed)WikiDiscussions develop Synced 2mo ago

READMEChangelogDependencies (4)Versions (3)Used By (0)

Webino Develop
==============

[](#webino-develop)

Developer utilities.

[![Build Status](https://camo.githubusercontent.com/816b97c946de96a8cab6209d2b3e91ccf02a15eee0df3b6b57d5e8a5402bc1a3/68747470733a2f2f696d672e736869656c64732e696f2f7472617669732f776562696e6f2f646576656c6f702f6d61737465722e7376673f7374796c653d666f722d7468652d6261646765)](http://travis-ci.org/webino/develop "Master Build Status")[![Coverage Status](https://camo.githubusercontent.com/b5312249f3c5044b706abedba45ac3f4045468cf4bb61a649e662c1a93af0f67/68747470733a2f2f696d672e736869656c64732e696f2f636f766572616c6c732f6769746875622f776562696e6f2f646576656c6f702f6d61737465722e7376673f7374796c653d666f722d7468652d6261646765)](https://coveralls.io/github/webino/develop?branch=master "Master Coverage Status")[![Code Quality](https://camo.githubusercontent.com/d743bacb6b63ba337fa255ad8f5346e4854d6cdd1b86e29ed8dde66901f43a5c/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f672f776562696e6f2f646576656c6f702f6d61737465722e7376673f7374796c653d666f722d7468652d6261646765)](https://scrutinizer-ci.com/g/webino/develop/?branch=master "Master Code Quality")[![Latest Stable Version](https://camo.githubusercontent.com/f6a95bbc2e20043f6a658b34186f38a2fa55b20d9b30e00f33f85c63239a3407/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f7461672f776562696e6f2f646576656c6f702e7376673f6c6162656c3d535441424c45267374796c653d666f722d7468652d6261646765)](https://packagist.org/packages/webino/develop)

Recommended Usage
-----------------

[](#recommended-usage)

Do use utility functions only for development usage.

Setup
-----

[](#setup)

[![PHP from Packagist](https://camo.githubusercontent.com/b2197a23385bc1adfded7dc6aa0d96a7e3e9e35a8b8e43204a117bf6f478c969/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f7068702d762f776562696e6f2f646576656c6f702e7376673f7374796c653d666f722d7468652d6261646765)](https://php.net "Required PHP version")

```
composer require webino\develop
```

Quick Use
---------

[](#quick-use)

Utility functions, development only:

```
d($foo);  // var_dump();
dd($foo); // var_dump();exit;
p($foo);  // print_r();
pd($foo); // print_r();exit;
pr($foo); // return print_r();
e();  // throw new \Webino\DevException;
```

API
---

[](#api)

- *void* d(*mixed* $subject)
    Var dumping the subject.
- *void* d(*mixed* $subject)
    Dying var dumping the subject.
- *void* p(*mixed* $subject)
    Enhanced subject print scream.
- *void* pd(*mixed* $subject)
    Dying enhanced subject print scream.
- *string* pr(*mixed* $subject)
    Enhanced subject print return.
- *void* bd(*mixed* $subject)
    Debugger bar var dumping the subject.
- *void* e(*string* $msg = '')
    Development exception.

Development
-----------

[](#development)

[![Build Status](https://camo.githubusercontent.com/d0096506f20227ab9572ab24bdacfd66034ccf94b1aad059a7a9d2d16cceff44/68747470733a2f2f696d672e736869656c64732e696f2f7472617669732f776562696e6f2f646576656c6f702f646576656c6f702e7376673f7374796c653d666f722d7468652d6261646765)](http://travis-ci.org/webino/develop "Develop Build Status")[![Coverage Status](https://camo.githubusercontent.com/1c38cefd760645ae0be2e86ecba19021b841b82b43c04054380e98420f8bc168/68747470733a2f2f696d672e736869656c64732e696f2f636f766572616c6c732f6769746875622f776562696e6f2f646576656c6f702f646576656c6f702e7376673f7374796c653d666f722d7468652d6261646765)](https://coveralls.io/github/webino/develop?branch=develop "Develop Coverage Status")[![Code Quality](https://camo.githubusercontent.com/86aeb66b815ee786b3f7837c7e28c217e6452cb6c41b56dcd2240d077642c3e1/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f672f776562696e6f2f646576656c6f702f646576656c6f702e7376673f7374796c653d666f722d7468652d6261646765)](https://scrutinizer-ci.com/g/webino/develop/?branch=develop "Develop Code Quality")[![Latest Unstable Version](https://camo.githubusercontent.com/50de21a215c5afdeef80ab07291ffa2d8b97bf393314319e91c2ba0e56206141/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f7461672d7072652f776562696e6f2f646576656c6f702e7376673f6c6162656c3d50524556494557267374796c653d666f722d7468652d6261646765)](https://packagist.org/packages/webino/develop "Packagist")

Static analysis:

```
composer analyse
```

Coding style check:

```
composer check
```

Coding style fix:

```
composer fix
```

Testing:

```
composer test
```

Git pre-commit setup:

```
ln -s ../../pre-commit .git/hooks/pre-commit
```

Addendum
--------

[](#addendum)

[![License](https://camo.githubusercontent.com/8169a18dbfc60e29acbfbb629bfd3abcdd7a7266f11aa93820b352a5d53143db/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f6c2f776562696e6f2f646576656c6f702e7376673f7374796c653d666f722d7468652d6261646765)](https://github.com/webino/develop/blob/master/LICENSE.md "BSD-3-Clause License")[![Total Downloads](https://camo.githubusercontent.com/06168e65bad8452a5b11d0e383db957b01828cd10e5291784bed901022ad3b33/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f776562696e6f2f646576656c6f702e7376673f7374796c653d666f722d7468652d6261646765)](https://packagist.org/packages/webino/develop "Packagist")[![GitHub code size in bytes](https://camo.githubusercontent.com/0156e49a8cb4731143f955f10123ac119f5ce8310b4de4734d51cc3cc43483e8/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6c616e6775616765732f636f64652d73697a652f776562696e6f2f646576656c6f702e7376673f7374796c653d666f722d7468652d6261646765)](https://camo.githubusercontent.com/0156e49a8cb4731143f955f10123ac119f5ce8310b4de4734d51cc3cc43483e8/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6c616e6775616765732f636f64652d73697a652f776562696e6f2f646576656c6f702e7376673f7374796c653d666f722d7468652d6261646765)

Please, if you are interested in this library report any issues and don't hesitate to contribute. We will appreciate any contributions on development of this library.

[![GitHub issues](https://camo.githubusercontent.com/79c703b504244b7fc7eb9b16e74bc94e4618cd819a0e2121701f0a429fc6aa58/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6973737565732f776562696e6f2f646576656c6f702e7376673f7374796c653d666f722d7468652d6261646765)](https://github.com/webino/develop/issues)[![GitHub forks](https://camo.githubusercontent.com/bde6bf2381de7c268ab3be0338e5264d9543f24fc681dc3992c0a809d1bc9a36/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f666f726b732f776562696e6f2f646576656c6f702e7376673f6c6162656c3d466f726b267374796c653d666f722d7468652d6261646765)](https://github.com/webino/develop)

###  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

2519d ago

### Community

Maintainers

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

---

Top Contributors

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

---

Tags

libraryv3webinowip

###  Code Quality

Static AnalysisPHPStan

Code StylePHP\_CodeSniffer

Type Coverage Yes

### Embed Badge

![Health badge](/badges/webino-develop/health.svg)

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

PHPackages © 2026

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