یوشا

دست نوشته ها و تجربیات شخصی

یوشا

دست نوشته ها و تجربیات شخصی

شهید دکتر مصطفی چمران: می گویند تقوا از تخصص لازمتر است، آنرا می پذیرم، اما می گویم آنکس که تخصص ندارد و کاری را می پذیرد بی تقواست!

طبقه بندی موضوعی

۱ مطلب با کلمه‌ی کلیدی «modular» ثبت شده است

۰۱
بهمن

Contents

 

Introduction

In context of software development - particularly with PHP - a package is a modular, reusable piece of functionality that can be integrated into an application. Packages are designed to extend or enhance capabilities of a application by adding specific features or tools without reinventing wheel!

Now why packages? why not develop built-in codes and features?

Because:
Save time & effort - Instead of coding complex functionality (like payments, authn, or APIs), you use a well-tested package, by too many users (well-cooked)
Follow best practices - Good packages are built by experts(mostly), ensuring security, performance, and maintainability.
Easy updates - When a package improves, you get upgrades without rewriting your code. (composer update vendor/package)
Community-Powered - Many packages are open-source, meaning developers worldwide contribute to imptove them.

So let's avoid reinventing wheel!

 

 

  • یوشا آل ایوب