Results: 1580
Notes
  • Newest first
  • Oldest first
  • Newest first(All)
  • Oldest first(All)
Updates all packages and writes the exact versions into
composer.lock
composer update
1. The composer.lock file will be ignored 2.
composer.json
file dependencies will be installed and updated (if a dependency is not installed it will be downloaded)
by Valeri Tandilashvili
4 years ago
0
Composer
Composer official doc
1
If we only want to update the specified package
composer update vendor/package
by Valeri Tandilashvili
4 years ago
0
Composer
Composer official doc
1
If we want to update all packages of the specified vendor
composer update "vendor/*"
by Valeri Tandilashvili
4 years ago
0
Composer
Composer official doc
1
If we want to downgrade a package to a specific version without changing our
composer.json
we can use --with and provide a custom version
composer update --with vendor/package:2.0.1
by Valeri Tandilashvili
4 years ago
0
Composer
Composer official doc
1
Installs the latest version of the specified package
composer require phpunit/phpunit
by Valeri Tandilashvili
4 years ago
0
Composer
Composer official doc
1
Installs the latest
minor
and
patch
versions of the package but
major
will be the specified version
composer require "vendor/package:2.*"
by Valeri Tandilashvili
4 years ago
0
Composer
Composer official doc
1
The
remove
command removes packages from
vendor
and
composer.json
file
composer remove vendor/package
by Valeri Tandilashvili
4 years ago
0
Composer
Composer official doc
1
Removes several packages at the same time
composer remove vendor/package vendor/package2
by Valeri Tandilashvili
4 years ago
0
Composer
Composer official doc
1
Shows available commands that we can execute
composer
by Valeri Tandilashvili
4 years ago
0
Composer
Php Composer Tutorial
1
Creates new project called
projectname
based on
laravel/laravel
package
composer create-project laravel/laravel projectname
by Valeri Tandilashvili
4 years ago
0
Composer
Php Composer Tutorial
1
Results: 1580