PHP · Reads
The Swoole team has open sourced TypePHP, an ahead-of-time compiler that translates PHP into C++ and then native machine code. The compiler is written in PHP itself and fully self-hosting, and it interoperates with the Z…
PHP · Reads
Laravel AI v0.11.0 introduces ToolSearch, a wrapper that defers tool definitions so providers load them only when needed. The feature maps to hosted tool search on OpenAI and Anthropic, cutting prompt tokens for agents w…
PHP · Reads
Laravel Auditor by Punyapal Shah equips existing AI coding agents with a written audit methodology, 75 stable rules and read-only project collectors, instead of letting them guess at bugs. The package requires PHP 8.3+ a…
PHP · Reads
Laravel AI SDK v0.11.0 assigns every agent run a single invocation ID and fires lifecycle events around each provider round-trip and tool call. It also adds hosted tool search for OpenAI and Anthropic and broadens failov…
DEV · Reads
A supply chain attack on a Rust crate has reignited debate about dependency culture. A widely discussed Reddit post argues that Rust shares the npm mindset of pulling in many small packages, and that languages with large…
PHP · Reads
Laravel Tackle is an open-source package that embeds an AI coding agent directly into a Laravel application as Artisan commands. It reads routes, queries databases, reviews pull requests, and can self-heal failed queue j…
PHP · Reads
The PHP Foundation's Ecosystem Security Team has published a step-by-step guide by Sebastian Bergmann for PHP maintainers who receive a vulnerability report. It covers private triage, safe proof-of-concept handling, GitH…
PHP · Reads
Laravel v13.26.0, released on August 18, 2026, adds a read-through filesystem driver that promotes files from a fallback disk on first read, debouncing for queued event listeners via #[DebounceFor], and a Queue::forward(…
PHP · Reads
Laravel Chores, a package by Amr Lotfy Saleh, wraps one-off data operations in batches that checkpoint progress to the database after every batch. An interrupted run resumes where it stopped. Inspired by Shopify's mainte…
PHP · Reads
The serversideup/php v4.6.0-beta1 images introduce a CADDY_ACME_PROFILE variable that selects Let's Encrypt's shortlived profile, the only profile under which IP-address certificates are issued. A FrankenPHP container re…
PHP · Reads
Lerd is a free, MIT-licensed local development environment for Linux and macOS that positions itself against Laravel Herd. It offers per-project PHP versions, trusted HTTPS on .test domains, a debugging dashboard, worktr…
DEV · Reads
A community piece previews the next major version of DuckDB, the in-process analytical database popular with data engineers. Worth a read for anyone running DuckDB in production or evaluating it, since a major version bu…
AI · Reads
Worth reading for Simon Willison's hands-on account of Alibaba's new Apache-2 licensed Qwen 3.8 27B, run locally on a MacBook Pro and an NVIDIA DGX Spark. He documents strong coding-agent and bounding-box performance, bu…
PHP · Reads
NativePHP v4 introduces SuperNative, a beta mode that compiles Blade components directly into SwiftUI on iOS and Jetpack Compose on Android, skipping web views entirely. Simon Hamp and Shane Rosenthal unveiled it at a 10…
DEV · Reads
Buf has released LSP support for Protocol Buffers, bringing IDE features like completion, navigation and diagnostics to .proto files. The announcement, discussed on r/programming, also drew comments on Buf's pricing: 36 …
PHP · Reads
A Laravel News tutorial walks through Laravel 13.25's image read path: Image now implements Responsable, so routes can return transformed images directly, with correct Content-Type. It also covers the new public toFormat…
AI · Reads
DeepSeek has released a developer preview of DeepSeek Harness, an open-source (MIT) agent harness where every capability — models, tools, sessions, sandboxes, storage, scheduling, even the UI — is a swappable plugin buil…
DEV · Reads
Ryan Dahl has released Durable Objects as open-source technology, decoupling them from Cloudflare's platform. This move enables developers to deploy stateful, globally-distributed computing workloads independently, expan…
PHP · Reads
Laravel 13.25 introduces a global queue pause mechanism to prevent workers from reserving new jobs during deployments. The feature uses queue:pause --all and queue:resume --all commands, or Queue::pauseAll() and Queue::r…
DEV · Reads
Tailscale's investigation into data corruption issues led to the discovery of a long-dormant bug in SQLite's write-ahead log (WAL) checkpoint mechanism. A race condition during WAL reset under specific concurrent conditi…
PHP · Reads
Laravel 13.25 replaces the concurrent process runner in artisan dev with @laravel/multiplex, a terminal UI that isolates output from the development server, queue worker, Pail, and Vite into separate tabs. Three display …
PHP · Reads
Laravel 13.25 introduces global pause/resume for all queues across connections via queue:pause --all and Queue::pauseAll(). The artisan dev command now uses @laravel/multiplex for a tabbed terminal interface with per-pro…
AI · Reads
Modular has released version 26.5, which marks the first stable release of the Mojo programming language. Mojo 1.0 promises a stable foundation with mostly additive changes during the 1.x cycle, plus new features such as…
PHP · Reads
Laravel News introduces Double, a PHP 8.3+ test double library by Laravel Shift creator Jason McCreary. It replaces the mock/spy/partial split with a single object, three behavior modes, readable failure output, PHPUnit …
PHP · Reads
Laravel Truss, a package by Alberto Arena, introspects your database structure and renders a zoomable, browser-based ER diagram at /truss. It adds schema diffing, health checks, multi-connection support and exports to DB…
PHP · Reads
Laravel 13.16 replaces the composer-based dev script with a first-party php artisan dev command that starts the dev server, queue listener, Pail logs and Vite together. This Laravel News tutorial explains the DevCommands…
PHP · Reads
A Laravel News tutorial shows how to validate and convert HEIC photos from iPhones using Laravel 13.24, which now accepts HEIC, HEIF and AVIF inputs, adds toHeic() output, and extends the image validation rule. It covers…
PHP · Reads
Saga Lara Flow is a Laravel package that turns long-running business processes into plain PHP methods on top of queues, with recorded steps, replay semantics, compensating transactions, signals, parallel blocks, and chil…
PHP · Reads
Filament v4.12.6 and v5.7.6 deliver render-time cuts of up to ~92% for forms and ~52% for tables, alongside security patches for several CVEs. The releases also add query-builder limits, CSV injection protection, CSS col…
PHP · Reads
Laravel Boost v2.5.0 enables project rules by default: committed Markdown files in .ai/rules that teach AI coding agents your team's conventions, scoped to matching directories. A record-rule MCP tool and an infer-conven…