Feed items

  • warning: Declaration of views_handler_argument::init(&$view, &$options) should be compatible with views_handler::init(&$view, $options) in /home/clients/ru/domains/development4web.com/html/sites/all/modules/views/handlers/views_handler_argument.inc on line 48.
  • warning: Declaration of views_handler_filter_boolean_operator::value_validate(&$form, &$form_state) should be compatible with views_handler_filter::value_validate($form, &$form_state) in /home/clients/ru/domains/development4web.com/html/sites/all/modules/views/handlers/views_handler_filter_boolean_operator.inc on line 111.
  • warning: Declaration of views_plugin_row_node_view::options_form(&$form, &$form_state) should be compatible with views_plugin_row::options_form($form, &$form_state) in /home/clients/ru/domains/development4web.com/html/sites/all/modules/views/modules/node/views_plugin_row_node_view.inc on line 35.

Introducing A Streaming AMQP Transport for Symfony Messenger

Symfony's Messenger component makes it easy to build message-driven
applications. However, developers using symfony/amqp-messenger have long
faced a limitation: it relies on polling (get()), which can lead to high
server load and doesn't scale well with a high number of workers.





W3C invites implementations of Compute Pressure Level 1

The Devices and Sensors Working Group has published Compute Pressure Level 1 as W3C Candidate Recommendation. The Compute Pressure API provides a way for websites to react to changes in the CPU pressure of the target device, such that websites can trade off resources for an improved user experience. 





Generate HTTP Fixtures from Live API Calls in Laravel


The HTTP Fixtures package for Laravel generates fake JSON responses for external API calls in tests. It simplifies creating mock responses by integrating with Faker to generate realistic test data.





Safely Retry API calls in Laravel


Idempotency for Laravel is a production-ready package for implementing idempotency in API requests. Clients can safely retry API calls using this package without worrying about duplicate processing.





NativePHP for Mobile v1 — Launching May 2

Build native iOS & Android apps using just Laravel. NativePHP for Mobile v1 release announcement— the same Laravel you've always used, now supercharged!





Node v22.15.0 (LTS)

Node.js Test CI Security Incident





Map Eloquent Attributes into an Object Using the Collection Cast in Laravel 12.10


The Laravel team released v12.10.0, which includes mapping Eloquent attributes using the collection cast into a specific object, checking nested relationships with relationLoaded(), Arr::dot() performance improvements, and more