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



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 had a tough problem when working on a project with a large number of Doctrine entities: Every time the entity is serialized and deserialized, the performance becomes very inefficient, resulting in a significant increase in system response time. I've tried multiple optimization methods, but it doesn't work well. Fortunately, by using sidus/doctrine-serializer-bundle, I successfully solved this problem, significantly improving the performance of the project.

I encountered a common but tricky problem when developing a large PHP project: how to effectively manage and inject dependencies. Initially, I tried using global variables and manual injection, but this not only increased the complexity of the code, it also easily led to errors. Finally, I successfully solved this problem by using the PSR-11 container interface and with the power of Composer.

When developing Yii framework projects, you often encounter situations where you need to obtain a large amount of data from the database. If appropriate measures are not taken, directly obtaining all data may cause memory overflow and affect program performance. Recently, when I was dealing with a project on a large e-commerce platform, I encountered this problem. After some research and trial, I finally solved the problem through the extension library of pavle/yii-batch-result.

I encountered a tricky problem when developing a new Laravel project: how to quickly build a fully functional and easy-to-manage content management system (CMS). I tried multiple solutions, but all gave up because of complex configuration and inconvenient maintenance. Until I discovered the LaravelCMS package mki-labs/espresso, which not only simple to install, but also provides powerful functions and intuitive management interface, which completely solved my problem.

I'm having a tough problem when developing a complex web application: how to effectively handle JavaScript errors and log them. I tried several methods, but none of them could meet my needs until I discovered the library dvasilenko/alterego_tools. I easily solved this problem through the installation of this library through Composer and greatly improved the maintainability and stability of the project. Composer can be learned through the following address: Learning address

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.

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.
