-
PHP's dependency management is actually quite nice. The community developed a standard [0], a client [1] and repository [2] that pretty much deal with everything I've had to do with PHP dependencies without issues.
[0] https://www.php-fig.org/psr/psr-4/
[1] https://getcomposer.org/
[2] https://packagist.org/
-
SaaSHub
SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives
-
PHP's dependency management is actually quite nice. The community developed a standard [0], a client [1] and repository [2] that pretty much deal with everything I've had to do with PHP dependencies without issues.
[0] https://www.php-fig.org/psr/psr-4/
[1] https://getcomposer.org/
[2] https://packagist.org/
-
localslackirc
Discontinued IRC gateway for slack, running on localhost for one user. The project is now on codeberg.
I could never understand why people insist on using requests rather than the stdlib (which works just fine).
When async became a thing, I remember hitting some bug in aiohttp so I wrote myself a tiny (just doing the bit I needed) HTTP async client, which I figured was easier than wrestling aiohttp into compliance.
These days aiohttp is quite nice for async, and for sync I just use the stdlib.
My async client, if it can be of interest https://github.com/ltworf/localslackirc/blob/master/slackcli...