Composer manages project dependencies

藏色散人
Release: 2020-10-09 14:04:49
Original
2541 people have browsed it

The following tutorial column of composer will introduce you to the dependencies of Composer management projects. I hope it will be helpful to friends in need!

Composer manages project dependencies

Composer

If you use Composer to manage project dependencies, simply add phpunit/phpunit to the project's composer.json file Dependencies are enough. Here is an example of a minimal composer.json file that only defines a development-time dependency on PHPUnit 5.0:

{
    "require-dev": {
        "phpunit/phpunit": "5.0.*"
    }
}
Copy after login

To complete a system-level installation through Composer, run:

composer global require "phpunit/phpunit=5.0.*"
Copy after login

Please ensure that the path variable contains ~/.composer/vendor/bin/.

The above is the detailed content of Composer manages project dependencies. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template