Tagged articles
10 articles
Page 1 of 1
php Courses
php Courses
Nov 26, 2025 · Backend Development

Master Composer: Step-by-Step Guide to PHP Dependency Management

Learn how to install Composer on Linux/macOS and Windows, initialize a PHP project, add and manage dependencies, leverage autoloading, and apply advanced tips like dev packages, autoload optimization, and Chinese mirror configuration to streamline and secure your backend development workflow.

Backend DevelopmentComposerautoload
0 likes · 7 min read
Master Composer: Step-by-Step Guide to PHP Dependency Management
php Courses
php Courses
Nov 20, 2025 · Backend Development

Boost PHP Projects: Master Composer Integration in ServBay

This guide explains how ServBay bundles Composer for seamless PHP dependency management, covering Composer basics, key features, project setup, autoloading, version updates, and a step‑by‑step example that demonstrates creating, installing, and using packages within ServBay.

ComposerServBayVersion Control
0 likes · 7 min read
Boost PHP Projects: Master Composer Integration in ServBay
php Courses
php Courses
Aug 26, 2025 · Backend Development

Boost PHP Performance: Reduce Composer Autoload Overhead with Simple Tweaks

This article explains why Composer's autoloader can become a performance bottleneck in large PHP projects and provides practical steps—such as using Composer's optimization commands, organizing namespaces, separating dev and prod configurations, leveraging PHP 7.4+ preloading, and monitoring with profiling tools—to significantly cut autoload overhead and improve overall application speed.

ComposerOPcacheautoload
0 likes · 7 min read
Boost PHP Performance: Reduce Composer Autoload Overhead with Simple Tweaks
php Courses
php Courses
Jul 8, 2024 · Backend Development

Using Composer with ServBay: Dependency Management and Autoloading for PHP Projects

ServBay integrates the popular PHP Composer tool, enabling developers to efficiently manage project dependencies, perform precise version control, and leverage automatic class loading, with step‑by‑step guidance, code examples, and tips for using Composer within the ServBay environment.

Backend DevelopmentComposerPHP
0 likes · 7 min read
Using Composer with ServBay: Dependency Management and Autoloading for PHP Projects
php Courses
php Courses
May 8, 2024 · Backend Development

Understanding Composer Autoload and PHP Class Loading in Laravel

This article explains how Laravel’s convenient architecture can hide PHP’s file‑loading requirements, demonstrates the fatal error caused by missing requires, and shows how Composer’s PSR‑4 autoloading automatically resolves class loading through proper configuration and the vendor/autoload.php entry point.

ComposerLaravelPHP
0 likes · 7 min read
Understanding Composer Autoload and PHP Class Loading in Laravel
php Courses
php Courses
Nov 13, 2023 · Backend Development

Design and Implementation of High-Scalability Architecture in PHP Core

This article explores PHP's core architecture for high scalability, covering modular design with namespaces and custom extensions, runtime dynamic loading via autoload and PSR standards, event‑driven structures, and caching optimizations such as opcode and data caches, illustrated with concrete code examples.

Backend DevelopmentPHPScalability
0 likes · 6 min read
Design and Implementation of High-Scalability Architecture in PHP Core
Laravel Tech Community
Laravel Tech Community
Jun 25, 2023 · Backend Development

Understanding PHP Magic Methods: __toString, __invoke, __set_state, __clone, __autoload, and __debugInfo

This article explains the purpose, usage, constraints, and example code for several PHP magic methods—including __toString, __invoke, __set_state, __clone, __autoload, and __debugInfo—showing their effects, common pitfalls, and how they improve object handling and debugging in modern PHP applications.

Debugging__invokeautoload
0 likes · 10 min read
Understanding PHP Magic Methods: __toString, __invoke, __set_state, __clone, __autoload, and __debugInfo
php Courses
php Courses
Apr 10, 2023 · Backend Development

How to Create and Publish a PHP Composer Package to GitHub and Packagist

This guide walks you through preparing a GitHub and Packagist account, creating a repository, initializing a Composer package (both automatically and manually), configuring PSR‑4 autoload, writing source code, and finally publishing the package by pushing to GitHub and submitting it to Packagist.

BackendGitHubPSR-4
0 likes · 6 min read
How to Create and Publish a PHP Composer Package to GitHub and Packagist