Description of new features in composer 2.0
Below, composer uses the tutorial column to introduce the new features of composer 2.0. I hope it will be helpful to friends in need!
#1. What are the new features?
For command line (CLI) users
New platform check feature checks runtime PHP version and available extensions to ensure They match project dependencies. If a mismatch is found, it will exit with error details. It is recommended to use the production PHP process during build or deployment to run composer check-platform-reqs
If the package exists in a higher priority repository, it is now in a lower priority The package will be completely ignored in the repository. For more information, see Repository Priority.
Invalid PSR-0/PSR-4 class configurations are no longer autoloaded in optimized autoloader mode, per the warning introduced in 1.10
-
On linux systems that support the XDG base directory specification, Composer now prefers to use XDG_CONFIG_DIR/composer instead of ~/.composer (if both are available 1.x uses ~/.composer first)
Package names must now comply with our naming guidelines, otherwise Composer will error and terminate. (https://github.com/composer/composer/blob/2.0.0/doc/04-schema.md#name)
--no-suggest is deprecated, Since it is no longer needed
PEAR support (repositories, downloaders, etc.) has been removed
update now lists the composer first. lock file (update step) and then lists the changes that were applied when installing the lock file into the vendor directory (installation step)
HTTPS_PROXY_REQUEST_FULLURI will now default to false if not specified, As this seems to work better in most environments
dev-trunk, dev-master and dev-default are no longer aliases for each other. Keep the exact branch name for now.
2. Detailed differences in event flow during dependency resolution, composer update and installation
composer v1
composer resolves dependencies (Scheduling PRE/POST_DEPENDENCIES_SOLVING)
Then, it goes through all packages step by step (Scheduling PRE_PACKAGE_INSTALL/UPDATE/UNINSTALL , then schedule PRE_FILE_DOWNLOAD as needed, then POST_PACKAGE_*).
Finally write the lock file at the end
composer v2
The update and installation processes have been split.
Update meeting:
composer resolves dependencies (scheduling PRE_POOL_CREATE)
-
Then write the lock file, update is completed
Then install:
Send to PRE_OPERATIONS_EXEC to execute Full list of operations
Download all packages not already in cache in parallel (scheduling PRE_FILE_DOWNLOAD for packages not yet in cache)
Then , which iterates through all packages and performs updates/installs/uninstalls in parallel (PRE_PACKAGE_INSTALL/UPDATE/UNINSTALL is distributed first, then POST_PACKAGE_*, but the last package launched may finish installing before another one is completed).
The above is the detailed content of Description of new features in composer 2.0. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Laravel is a PHP framework for easy building of web applications. It provides a range of powerful features including: Installation: Install the Laravel CLI globally with Composer and create applications in the project directory. Routing: Define the relationship between the URL and the handler in routes/web.php. View: Create a view in resources/views to render the application's interface. Database Integration: Provides out-of-the-box integration with databases such as MySQL and uses migration to create and modify tables. Model and Controller: The model represents the database entity and the controller processes HTTP requests.

When developing an e-commerce website, I encountered a difficult problem: how to provide users with personalized product recommendations. Initially, I tried some simple recommendation algorithms, but the results were not ideal, and user satisfaction was also affected. In order to improve the accuracy and efficiency of the recommendation system, I decided to adopt a more professional solution. Finally, I installed andres-montanez/recommendations-bundle through Composer, which not only solved my problem, but also greatly improved the performance of the recommendation system. You can learn composer through the following address:

When developing websites using CraftCMS, you often encounter resource file caching problems, especially when you frequently update CSS and JavaScript files, old versions of files may still be cached by the browser, causing users to not see the latest changes in time. This problem not only affects the user experience, but also increases the difficulty of development and debugging. Recently, I encountered similar troubles in my project, and after some exploration, I found the plugin wiejeben/craft-laravel-mix, which perfectly solved my caching problem.

I'm having a tricky problem when doing a mail marketing campaign: how to efficiently create and send mail in HTML format. The traditional approach is to write code manually and send emails using an SMTP server, but this is not only time consuming, but also error-prone. After trying multiple solutions, I discovered DUWA.io, a simple and easy-to-use RESTAPI that helps me create and send HTML mail quickly. To further simplify the development process, I decided to use Composer to install and manage DUWA.io's PHP library - captaindoe/duwa.

Article summary: This article provides detailed step-by-step instructions to guide readers on how to easily install the Laravel framework. Laravel is a powerful PHP framework that speeds up the development process of web applications. This tutorial covers the installation process from system requirements to configuring databases and setting up routing. By following these steps, readers can quickly and efficiently lay a solid foundation for their Laravel project.

VprocesserazrabotkiveB-enclosed, Мнепришлостольностьсясзадачейтерациигооглапидляпапакробоглесхетсigootrive. LEAVALLYSUMBALLANCEFRIABLANCEFAUMDOPTOMATIFICATION, ČtookazaLovnetakProsto, Kakaožidal.Posenesko

The Laravel framework has built-in methods to easily view its version number to meet the different needs of developers. This article will explore these methods, including using the Composer command line tool, accessing .env files, or obtaining version information through PHP code. These methods are essential for maintaining and managing versioning of Laravel applications.

When developing a Laravel application, I encountered a common but difficult problem: how to improve the security of user accounts. With the increasing complexity of cyber attacks, a single password protection is no longer enough to ensure the security of users' data. I tried several methods, but the results were not satisfactory. Finally, I installed the wiebenieuwenhuis/laravel-2fa library through Composer and successfully added two-factor authentication (2FA) to my application, greatly improving security.
