Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Laravel Zero | 3,319 | 1 | 1 | 2 months ago | 227 | August 25, 2022 | 45 | PHP | ||
A PHP framework for console artisans | ||||||||||
Slugify | 2,785 | 3,235 | 339 | 6 months ago | 39 | August 13, 2022 | 28 | mit | PHP | |
Converts a string to a slug. Includes integrations for Symfony, Silex, Laravel, Zend Framework 2, Twig, Nette and Latte. | ||||||||||
Phpmon | 2,733 | 3 days ago | 2 | mit | Swift | |||||
Lightweight, native Mac menu bar app that helps you manage multiple PHP installations, locate config files and more. Also interacts with Laravel Valet. | ||||||||||
Php Ddd Example | 2,614 | a month ago | 66 | PHP | ||||||
🐘🎯 Hexagonal Architecture + DDD + CQRS in PHP using Symfony 6 | ||||||||||
Open Ai | 1,653 | 10 days ago | 7 | November 04, 2022 | 13 | mit | PHP | |||
OpenAI PHP SDK : Most downloaded, forked, contributed, huge community supported, and used PHP (Laravel , Symfony, Yii, Cake PHP or any PHP framework) SDK for OpenAI GPT-3 and DALL-E. It also supports chatGPT-like streaming. (ChatGPT AI is supported) | ||||||||||
Backup Manager | 1,626 | 275 | 14 | 5 months ago | 43 | July 05, 2022 | 14 | mit | PHP | |
Database backup manager for dumping to and restoring databases from S3, Dropbox, FTP, SFTP, and Rackspace Cloud | ||||||||||
Endoflife.date | 1,543 | 14 hours ago | 156 | mit | Ruby | |||||
Informative site with EoL dates of everything | ||||||||||
Laravel Dump Server | 1,448 | 10,982 | 329 | 4 months ago | 13 | October 22, 2020 | 26 | mit | PHP | |
Bring Symfony's Var-Dump Server to Laravel | ||||||||||
Laravel Telescope Toolbar | 735 | 2 | 1 | 4 months ago | 28 | January 30, 2022 | 14 | mit | PHP | |
A toolbar for Laravel Telescope, based on the Symfony Web Profiler. | ||||||||||
Docksal | 634 | 2 months ago | 150 | mit | Shell | |||||
Unified, Docker 🐳 powered web development environments for macOS, Windows, and Linux |
Integration layer for RoadRunner that allows to create easy integrations/bridges for RoadRunner.
At this moment supports PSR7 and raw RoadRunner requests.
Framework/Library | Link | Status |
---|---|---|
Laravel | UPDG/roadrunner-laravel | Stable |
Symfony | UPDG/roadrunner-symfony | Beta |
If you not using default relay (new \Spiral\Goridge\StreamRelay(STDIN, STDOUT)
) you can pass relay object as second
parameter of \updg\roadrunner\easy\RoadRunner()
.
In order to create integration you have to implement PSR7IntegrationInterface
or HttpIntegrationInterface
.
After it you can use it as follows:
$integration = new MyAwesomeIntegration();
$bridge = new \updg\roadrunner\easy\RoadRunner($integration);
$bridge->run();