El boletín mensual recopila las novedades más relevantes del ecosistema PHP al cierre de cada mes, curadas a partir de PHP Weekly.
Boletín mensual · Octubre 2025
Artículos destacados
- Enums: How Laravel Devs Cut bugs by 50%. Resumen (inglés): If you’ve been knee-deep in building robust PHP apps, you’ve probably wrestled with status flags, roles, or those pesky string constants that scatter across your codebase like con…
- Centralizing code quality commands in PHP projects: composer scripts vs Makefile. Resumen (inglés): In this article, we’ll see how to centralize all code quality commands in one place, ensuring consistency and simplicity.
- Symfony 7.4 is Coming! Your New LTS Bridge to 8.0. Resumen (inglés): The final minor release in any Symfony branch is always the crucial moment where awesome new features meet enterprise stability. It’s the release that truly matters for long-term …
- Parallel PHP SOAP Client Requests. Resumen (inglés): Article about implementing parallel SOAP requests in PHP using custom HTTP transport and Guzzle Promises.
- DSA Pattern: A Clean Way to Parse Words from a String. Resumen (inglés): I discovered a powerful template for breaking down a string into individual words without using built-in functions like explode() or str_word_count().
- Threading and Concurrency in Laravel — A Deep Dive. Resumen (inglés): In Laravel, “threading” doesn’t exist in the same way as low-level multi-threading in languages like Java or C++.
- Moving PHP open source forward. Resumen (inglés): At JetBrains, we want the PHP community to shine. First and foremost, we do this by building PhpStorm, the best IDE for PHP development; but we also support and help drive the PHP…
- Essential Composer CLI Commands Cheat Sheet. Resumen (inglés): Composer is the dependency manager for PHP that helps you manage packages and libraries in your projects.
- Making my Laravel Development simple with Forge. Resumen (inglés): My GitHub looks like a graveyard of half-finished projects, and over these years of building these forgotten side projects, I’ve learned one crucial lesson: time spent on DevOps i…
- Beyond PHP: How Laravel 11 Is Quietly Revolutionizing Backend Development in 2024. Resumen (inglés): In this article, we’ll explore how Laravel has evolved into a modern engineering marvel, and why you might want to reconsider it as your go-to backend stack.
- Beyond JIT: Deep Dive into PHP 8.5’s Next-Generation Features. Resumen (inglés): The PHP community has moved past the initial performance revolution sparked by the Just-In-Time (JIT) compiler in PHP 8.0. Subsequent minor releases have polished the runtime and …
- A Clean Way to Detect Slow Queries in Laravel. Resumen (inglés): When working with Laravel applications, database performance is often the silent bottleneck. Everything looks fine until you realize that some queries take way longer than they sh…
- Exploring Filament v4.1: What’s New and Why It Matters. Resumen (inglés): In this post, let’s break down what’s new in v4.1 and why it matters for your Laravel projects.
- PHP 8.5: The Pipe Operator. Resumen (inglés): The developer experience is far better in PHP 8 and later versions, for example, with Constructor property promotion. When creating objects, such as DTOs, it saves time and energy…
- What is Laravel Eloquent ORM?. Resumen (inglés): As an implementation of the Active Record pattern, Eloquent allows developers to work with database tables as if they were PHP objects, significantly simplifying database operatio…
- Understanding Laravel Blade Components and Slots. Resumen (inglés): In this article, we’ll explore what Blade components and slots are, why they’re useful, and how to use them effectively.
- How much PHP knowledge is needed for WordPress and where can you easily learn PHP for WordPress?. Resumen (inglés): To learn WordPress theme and plugin development, the following PHP stuff would be more than sufficient. This guideline is provided by Kamal Ahmed, who has worked for WPDevelopers,…
- Building Reactive Systems in PHP: When Async and Streams Make Sense. Resumen (inglés): For years, that was true. PHP grew up in a synchronous request–response world, where every request starts fresh and ends clean. But software today isn’t built in isolation. It’s r…
Tutoriales y charlas
- Elevating SQL Efficiency - Laravel In Practice EP7. Resumen (inglés): You're loading 10,000 orders into memory just to calculate totals. Your server is crying, your users are waiting, and there's a better way. What if the database could do all that …
- Laravel Strict Validation for Type Checking. Resumen (inglés): PHP's type juggling allows "1" to pass as boolean and numeric strings to pass as integers. Laravel's strict validation parameters enforce exact type matching for numeric, boolean,…
- Querying Data in MongoDB With Laravel: From Basics to Advanced Techniques. Resumen (inglés): MongoDB has grown into one of the most popular NoSQL databases thanks to its flexible, document-based structure. Unlike traditional SQL databases that store data in rows and table…
- Building a High-Performance Keccak-256 Extension for PHP: 14-16 Faster. Resumen (inglés): The Problem: Pure PHP Keccak hashing: 0.28-0.44ms per hash. At scale, this makes Ethereum development impractical.
- Building a Scalable Laravel Application with DDD and CQRS Architecture. Resumen (inglés): In this article, I'll show you how to implement Domain-Driven Design (DDD) and Command Query Responsibility Segregation (CQRS) patterns in Laravel to build a robust, enterprise-gr…
- Golang For PHP Developer : Testing & Deployment. Resumen (inglés): Goal: Write tests and deploy your API to production.
- Building a True Dual-Destination Analytics Pipeline: Real-Time Streaming with S3 Backup and Recovery. Resumen (inglés): This article details the implementation of a sophisticated dual-destination analytics pipeline that combines real-time data streaming to AWS Redshift Serverless with robust S3 bac…
- How to Create a Telegram Bot and Send Messages Using Laravel 12. Resumen (inglés): In this blog we will discover how to create a Telegram bot and seamlessly integrate it with Laravel 12 in this comprehensive guide.
- Constructor vs Destructor in PHP — Complete Guide with Real-World Examples. Resumen (inglés): When you start learning Object-Oriented Programming (OOP) in PHP, two very important concepts you’ll quickly encounter are constructors and destructors.
- Mastering PHP Generators: An In-Depth Guide for Everyone from Novices to Experts. Resumen (inglés): Whether you’re just starting out with PHP — maybe you’ve only written a few “Hello World” scripts — or you’re a seasoned developer optimizing massive applications, PHP generators …
- Decoding Large JSON Files Efficiently in PHP — json_decode() vs Streaming with JSON Machine. Resumen (inglés): Recently, I faced a memory allocation error in one of our legacy applications built with Lumen 5.6 and PHP 7.3. The culprit? A seemingly simple task — decoding a large JSON file (…
- Find Feature Tests Creating Database Records without Refreshing the Database in Laravel. Resumen (inglés): When feature testing a Laravel application, Laravel provides useful tools for database testing, like refreshing the database, factories, seeders, and database assertions. In a mod…
- Laravel whereValueBetween for Column Range Queries. Resumen (inglés): The whereValueBetween() method checks if a value falls between two database columns. This query builder method handles comparisons where a single value must exist within bounds de…
- How We Built a White-Label Travel Portal Using Real-Time APIs. Resumen (inglés): Building a travel booking platform from scratch sounds complex — and it is. But with today’s API ecosystem, developers can connect real-time hotel, flight, and activity data witho…
- Building a Google Rating Comparison Overview for Nomad Travel Insurances using Google Places API. Resumen (inglés): Long-term travelers, expats, and digital nomads often struggle to find transparent travel health insurance options. Marketing websites are full of affiliate links, while reviews a…
- Zed for Laravel - Complete Editor Setup in One Command. Resumen (inglés): Setting up a code editor for Laravel development can be time-consuming. After switching to Zed - the lightning-fast editor from Atom's creators - I spent weeks configuring it perf…
- Financial Transactions: Implementing Hugging Face AI Models with PHP. Resumen (inglés): The financial technology landscape is experiencing a seismic shift. Traditional rule-based systems that once dominated transaction processing are giving way to intelligent, adapti…
- Epic Migration Battle Report: Taming a Legacy PHP Server on Google Cloud. Resumen (inglés): We’ve all been there. You inherit a server. It’s important, it’s been running for years, and nobody really wants to touch it. Ours was a classic: a single Google Compute Engine VM…
- PHP 8.4 + Laravel: Building Bulletproof Apps with Type Safety. Resumen (inglés): Hey Laravel folks, it’s Manjeet. If you’ve ever chased a sneaky runtime errors at 2 AM because some string slipped into an int field you know the pain.
- Building Secure Multi-Step Forms in WordPress: An OOP & AJAX Deep Dive. Resumen (inglés): This article serves as a developer reference and deep dive into building secure, dynamic multi-step forms in WordPress using Object-Oriented PHP, AJAX, and WordPress best practice…
- Functional Programming in PHP: A Practical Guide with a Real-World Example. Resumen (inglés): In this article, I’ll show you how to write functional code in PHP using a real-world shopping cart calculator as an example.
- Profiling Laravel: How to Find Hidden Performance Killers. Resumen (inglés): Your dashboard loads, but something feels off. The data is correct, the code looks clean, but users are complaining about speed. What if I told you that your seemingly simple dash…
- Introduction to MongoDB & Laravel-MongoDB Setup. Resumen (inglés): By the end of this tutorial, you'll be able to: Understand MongoDB fundamentals and its advantages over traditional SQL databases. Set up a Laravel project with MongoDB integratio…
- Laravel 12 Delete File From Public / Storage Folder. Resumen (inglés): In this Laravel 12 tutorial, we’ll cover how to remove or delete files and images from both the public folder and the storage folder. The techniques shared here are compatible not…
- Two-factor authentication in Laravel Nova. Resumen (inglés): Laravel Nova has a lot of great things regarding security out of the box, which is great, but I needed something a bit different, 2FA.
- Temporal Modeling in PHP — Designing Systems That Respect Time. Resumen (inglés): Time is the most underestimated dimension in software design. We treat systems as static — “a user is active,” “an order is paid.” But reality is never static. Everything changes …
- Deploying Docker for Symfony Development in 6 Steps. Resumen (inglés): I’ll walk you through six steps to set up Docker with Symfony. This detailed guide covers everything you need to configure a complete Symfony development environment using Docker.
- Adapter Pattern in Laravel: A Practical Guide. Resumen (inglés): When working on large Laravel applications, you’ll often face situations where two systems need to communicate but don’t share the same interface.
- Building My Own AI Chat Interface with Laravel and GenAI. Resumen (inglés): It all started when I wanted to spend some time exploring the world of AI and figuring out how I could use it in my projects.
- Setting Up a Complete LAMP Stack on Ubuntu: A Developer’s Journey. Resumen (inglés): A comprehensive guide to installing Linux, Apache, MySQL, and PHP for web development.
Noticias y lanzamientos
- PHP 8.5 Introduces a New URI Extension. Resumen (inglés): PHP 8.5 introduces a new URI extension, which is a standards-compliant parser "for both RFC 3986 and the WHATWG URL standard as an always-available part of its standard library wi…
- Improved HTTP Client URL Parameter Merging in Laravel 12.33. Resumen (inglés): The Laravel team released version 12.33.0 this week, introducing a Stringable doesntContain() method, merging (instead of replacing) HTTP client URL parameters, improved broadcast…
- PHP 8.5.0 RC 2 available for testing. Resumen (inglés): The PHP team is pleased to announce the second release candidate of PHP 8.5.0, RC 2. This continues the PHP 8.5 release cycle, the rough outline of which is specified in the PHP W…
- October 6–12, 2025: A Week of Symfony #980. Resumen (inglés): This week, the upcoming Symfony 7.4 version deprecated the HTTP method override for the GET, HEAD, CONNECT, and TRACE methods, and added a new setAllowedHttpMethodOverride() metho…
- Celebrating 20 Years of Symfony. Resumen (inglés): This week, Symfony turns 20 years old! Twenty years of code, collaboration, and community. Twenty years of ideas that became innovations — and of people who turned open source int…
- PHP’s New URI Extension: An Open Source Success Story. Resumen (inglés): URLs are a fundamental building block of the Web we rely on every day. Their familiarity makes them appear deceptively simple: Seemingly clearly delineated components like scheme,…
- Laracon AU 2025 schedule published. Resumen (inglés): We’re just over one month away from Laracon Australia 2025, happening November 13–14 at QUT Gardens Theatre in Brisbane - and the full conference schedule is now live!
- Http Client Batch Method in Laravel 12.32. Resumen (inglés): The Laravel team released version 12.32.0 this week with a new HTTP batch method, an "after" rate limiting method to control rate limiting by response, batch job failure callback …
- Craft CMS is moving to Laravel. Resumen (inglés): Craft CMS just announced on stage at their Dot All conference that they will be moving to Laravel for V6, their next major release.
- Setup Command Added to Laravel's Composer File. Resumen (inglés): Taylor Otwell shipped a setup command to Laravel's Composer file, consolidating typical setup steps into one command to set up a Laravel project. This command is a good starting p…
- September 29 – October 5, 2025: A Week of Symfony #979. Resumen (inglés): This week, the upcoming Symfony 7.4 version deprecated the XML configuration format for services and routing, introduced new attributes to configure console arguments, deprecated …
- Filament v4.1 is here!. Resumen (inglés): We're very excited to announce the release of Filament v4.1! Since v4.0 was released, the core team and community have been hard at work.
- Laravel Starter Kit by Nuno Maduro. Resumen (inglés): Nuno Maduro's Laravel Starter Kit is a strict Laravel skeleton for those who demand meticulous precision in their projects. This starter kit includes tools to enforce strictness i…
- Symfony 7.3.4 released. Resumen (inglés): Symfony 7.3.4 has just been released. Read the Symfony upgrade guide to learn more about upgrading Symfony and use the SymfonyInsight upgrade reports to detect the code you will n…
- September 22–28, 2025: A Week of Symfony #978. Resumen (inglés): This week, Symfony released the maintenance versions 6.4.26 and 7.3.4. Development on the upcoming Symfony 7.4 version also continued, with more features and deprecations added ah…
- CakeFest: The Cakephp Conference: Madrid, Oct 9th - 10th 2025. Resumen (inglés): Every spring we hold our annual conference dedicated to CakePHP. For the past 10 years, the framework has been a benchmark for PHP development, providing developers with a full MV…
Podcasts y vídeos
- The Stack Overflow: AI agents for your digital chores . Resumen (inglés): Ryan welcomes Dhruv Batra, co-founder and chief scientist at Yutori, to explore the future of AI agents, how AI usage is changing the way people interact with advertisements and t…
- No Compromises Podcast: A composable, versioned toolkit for Laravel projects. Resumen (inglés): We join a fair number of projects, and we often help teams bring their project up to our standard. This means bringing a lot of the same small pieces from project to project.
- North Meets South Podcast: Choose your hard . Resumen (inglés): Michael and Jake open with retro arcade serendipity (a Mortal Kombat cabinet sighting!) and tumble into family bowling, kid-approved card games, and why tactile gadgets are back i…
- Maintainable Podcast: Nathan Ladd: Relentless Improvement and the Cost of Neglect. Resumen (inglés): The discussion moves into how standards evolve beyond tools, the trade-offs of monocultures vs. consensus-driven teams, and why ownership matters when the original authors move on…
- Software Engineering Radio: SE Radio 689: Amey Desai on the Model Context Protocol. Resumen (inglés): Amey Desai, the Chief Technology Officer at Nexla, speaks with host Sriram Panyam about the Model Context Protocol (MCP) and its role in enabling agentic AI systems.
- Shoptalk Show: Todd Libby on Deceptive Patterns. Resumen (inglés): Todd Libby is on the show to talk with us about deceptive patterns on the web, what WCAG is and who it's for, and 5 deceptive patterns in use on the web today.
- WP Builds: 440 – Comparing WordPress page builder accessibility: in-depth insights from Amber Hinds. Resumen (inglés): In this episode of WP Builds, Nathan Wrigley interviews Amber Hinds, CEO of Equalize Digital, about her comprehensive 2025 WordPress page builder accessibility comparison researc…
- PHP Architect: The PHP Podcast 2025.10.09 . Resumen (inglés): This week on the PHP Podcast, Eric and John talk about NativePHP Mobile, EAV Database Models, PHP Tek 2026 CFP coming to and end, Fun Simpson API, and more.
- Mostly Technical: 103: Developer Dad. Resumen (inglés): Ian and Aaron talk about how Outro is shaping up, why we all need a handyman, why Ian is bullish on Sora, what's happening with Aaron's next batch of courses, and more.
- Syntax: Chrome Dev Tools MCP Server. Resumen (inglés): Scott and Wes dive into Chrome’s new MCP server; a dev tools API powered by Puppeteer that gives your scripts, editors.
- The Changelog: The great software quality collapse. Resumen (inglés): Denis Stetskov describes how we’ve “normalized catastrophe” in the software industry, Meta is officially handing React and React Native over to a foundation.
- Laravel News Podcast: Local errors, pretty PHP, and terminal UIs. Resumen (inglés): Jake and Michael discuss all the latest Laravel releases, tutorials, and happenings in the community.
- The Stack Overflow: Context is king for secure, AI-generated code. Resumen (inglés): Ryan sits down with Dimitri Stiliadis, CTO and co-founder of Endor Labs, to talk about how AppSec is evolving to address AI’s use cases.
- Software Engineering Radio: SE Radio 688: Daniel Stenberg on Removing Rust from Curl. Resumen (inglés): Daniel Stenberg, Swedish Internet protocol expert and founder and lead developer of the Curl project, speaks with SE Radio host Gavin Henry about removing Rust from Curl.
- Developer Tea: Engage in Deliberate Practice to Level Up Your Engineering Leadership Skills. Resumen (inglés): I want to dive into the concept of Deliberate Practice, which sets the greatest apart in fields ranging from sports to writing to engineering. I’ll explain why it’s much more than…
- Shoptalk Show: Fix My Home Tech, What’s Up with Firefox, and the MVP Car. Resumen (inglés): Who's the person to hire when your home network isn't working as reliably as it should? And while we're at it - can you also fix Dave's Find My notifications? What's the plan with…
- WP Builds: 439 – AI and automation in website audits: Pradeep Sonawane talks about Web Auditor. Resumen (inglés): In this episode, Nathan Wrigley talks with Pradeep Sonawane about WebAuditor IO, a SaaS tool designed to help developers, agencies, and non-technical users quickly identify and fi…
- PHP Architect: The PHP Podcast 2025.10.02 . Resumen (inglés): This week on the PHP Podcast, Eric and John talk about Scott’s PHP 8.5 review, Alive and Kicking’s first live stream, PHP Foundation’s call for design, the new Laravel Forge, and …
- Mostly Technical: 102: Vision Quest. Resumen (inglés): Ian and Aaron talk about Aaron's recent "Vision Quest", accidentally inventing transcendental meditation, realizing he's addicted to Twitter, and the reaction he got online. Plus …
- Syntax: Modern React with Ricky Hanlon (React Core Dev). Resumen (inglés): Scott and Wes sit down with Ricky Hanlon from the React core team at Facebook to dive into the latest features and APIs shaping modern React development.
- The Changelog: The best coders should exit the feed. Resumen (inglés): Abner Coimbre makes a compelling case why our biggest technical talent should abandon for-profit social platforms, Noah Brier creates a Claude Code and Obsidian starter kit, Bhara…
- The Stack Overflow: As your AI gets smarter, so must your API . Resumen (inglés): Ryan sits down with Marco Palladino, CTO of Kong, to talk about the rise of AI agents and their impact on API consumption, the MCP protocol as a new standard for agents, the impor…
- No Compromises Podcast: Should you use DTOs in Laravel?. Resumen (inglés): In the latest episode of the No Compromises podcast, we weigh the pros and cons of DTOs in everyday Laravel apps, comparing them to form requests, PHPDoc-typed arrays, and service…
- North Meets South Podcast: Controllers and Middleware, Grok vs. Claude, and Developer Value . Resumen (inglés): Jake and Michael dive into a wide range of topics, from coding practices in Laravel to the evolving role of AI in software development. They kick things off with daylight savings …
- Software Engineering Radio: SE Radio 687: Elizabeth Figura on Proton and Wine. Resumen (inglés): Elizabeth Figura, a Wine Developer at CodeWeavers, speaks with host Jeremy Jung about the Wine compatibility layer and the Proton distribution.
- Developer Tea: Resumé Driven Development - Your Career is In Your Hands. Resumen (inglés): In this episode we'll discuss why "Résumé Driven Development" is a powerful mental model for building a thriving career. Instead of seeing your résumé as just a job-hunting tool, …
- Shoptalk Show: What Motivates Chris to Keep Working on CodePen?. Resumen (inglés): Listener questions about CSS ruby-position, crafting adaptive layouts using a responsive component, what keeps Chris motivated to work on CodePen, why are there no positive issues…
- WP Builds: 438 – Taking WordPress editing further with Amender’s AI-powered, universal content customisation . Resumen (inglés): In this episode of WP Builds, Nathan Wrigley welcomes back Sebastian Webb to discuss his new WordPress product, Amender. Sebastian explains how Amender lets users visually and non…
- PHP Architect: Community Corner: PHPScore with Ed Grosvenor . Resumen (inglés): In this episode, Scott talks with Ed Grosvenor about technical debt and his company’s new website PHPScore.com that inspects your PHP projects for technical debt so you can bring …
- Mostly Technical: 101: Infinite Feed of Content. Resumen (inglés): Ian and Aaron recap Commit Your Code 2025, dive into the business of Aaron Francis, and wonder what we're all going to do with this AI slop.
- Syntax: Is Responsible AI Possible? with Dr. Sarah Bird of Microsoft. Resumen (inglés): Scott heads to Microsoft’s campus for the VS Code Insider Summit to sit down with Dr. Sarah Bird and explore what “Responsible AI” really means for developers.
- The Changelog: Hiring only senior engineers is killing companies. Resumen (inglés): Andrew Churchill thinks companies should really be hiring junior engineers, Addy Osmani announces Chrome DevTools MCP, GitHub lays out a roadmap to fend off npm attacks, Jerry Liu…
Proyectos, herramientas y librerías
- braunstetter/media-bundle. Resumen (inglés): Everything you need in order to upload and manage media files with symfony.
- kebacorp/vaultsecret. Resumen (inglés): The extension allows to load the Vault secrets from json files and get them.
- farmani/remote-image-info. Resumen (inglés): Get image information without downloading whole file.
- pantheon-quicksilver/drush-config-import. Resumen (inglés): Importing drupal configuration changes from .yml files with drush.
- agoradesign/agoratimeline. Resumen (inglés): Drupal 8/9 module providing a custom entity type and a referencing paragraphs bundle to provide History/Timeline pages (no templates, styles and javascript inlcuded, just configur…
- buuum/encode. Resumen (inglés): A simple library to encode and decode data in PHP.
- patronbase/omnipay-cybersource-hosted. Resumen (inglés): CyberSource Secure Acceptance Hosted Checkout driver for the Omnipay payment processing library.
- moshimoshi/craft-translationsuite. Resumen (inglés): Translation Suite allows developers to provide static translations during development while allowing the user to manage these translations through the use of a user interface.
- ublabs/blade-simple-icons. Resumen (inglés): A package to easily make use of Simple Icons in your Laravel Blade views.
- decrypted/php-amqplib. Resumen (inglés): Formerly videlalvaro/php-amqplib. This library is a pure PHP implementation of the AMQP protocol.
- nimmneun/onesheet. Resumen (inglés): OneSheet is a fast and lightweight single/multi sheet excel/xlsx file writer for PHP 5.4+ (until v1.2.6), PHP 7 & PHP 8 with styling and cell auto-sizing support.
- jeroennoten/laravel-package-helper. Resumen (inglés): Helpers for Laravel packages.
- fabiang/sasl. Resumen (inglés): Abstraction of various SASL mechanism responses.
- yii2mod/yii2-ftp. Resumen (inglés): A flexible FTP and SSL-FTP client for PHP. This lib provides helpers easy to use to manage the remote files.
- maslosoft/embedi. Resumen (inglés): Embedded Dependency Injection container.
- chromatic/usher. Resumen (inglés): A collection of Robo commands for use on Chromatic projects.
- banago/bridge. Resumen (inglés): A PHP class to transfer data using different protocols (sftp, ftp, http, etc). Utilizes PHPs ssh2, ftp and curl functions if available.
- lab123/lumen-notification. Resumen (inglés): Wrapper of Laravel Notification adapted to work with Lumen 5.x
- nexusphp/cs-config. Resumen (inglés): A factory for custom rulesets for PHP CS Fixer.
- open-code-modeling/php-filter. Resumen (inglés): Common PHP filters for code generation.
- mage2pro/square. Resumen (inglés): Square Payments integration with Magento 2.
- annaghd/php-credit-card-validator-plus. Resumen (inglés): Validates popular debit and credit cards numbers against regular expressions and Luhn algorithm. Also validates the CVC and the expiration date.
- shortlist-digital/agreable-trending-posts-widget-plugin. Resumen (inglés): A plugin for the trending posts widget.
- swilson1337/yii2-widget-sidenav. Resumen (inglés): An extension of Kartik's SideNav module for Yii2.
- conduction/flatlandbundle. Resumen (inglés): Symfony Bundle for dutch common ground functionality.
- jaybizzle/laravel-zencoder. Resumen (inglés): A laravel wrapper around the zencoder API.
- scrumble-nl/laravel-csr. Resumen (inglés): This package makes it possible to generate a controller, service, repository, model and migration all in 1 command.
- fr3nch13/cakephp-pta. Resumen (inglés): A CakePHP Plugin to emulate a generic App when testing Plugins.
- mschop/simplified-isolator. Resumen (inglés): Simplified isolator without dynamic code generation as replacement for icecave/isolator.
- tonning/flashable. Resumen (inglés): A simple trait to flash when model events are fired, like
created,updated, andsaved.