Results: 1578
Notes
  • Newest first
  • Oldest first
  • Newest first(All)
  • Oldest first(All)
Recreates autoload files inside
/vendor/composer/
directory
composer dumpautoload  /  composer dump-autoload
by Valeri Tandilashvili
5 years ago
0
Composer
Php Composer Tutorial
0
Installs
vendor/package
with development mode
composer require --dev illuminate/container
The package will be listed in require-dev inside
composer.json
"require-dev": {
        "illuminate/container": "^7.25"
}
by Valeri Tandilashvili
5 years ago
0
Composer
Php Composer Tutorial
0
Shows available commands that we can execute
composer
by Valeri Tandilashvili
5 years ago
0
Composer
Php Composer Tutorial
1
We can also search for more than one term by passing multiple arguments
composer search keyword1 keyword2
by Valeri Tandilashvili
5 years ago
0
Composer
Composer official doc
0
Searches packages in packagist repositories
composer search keyword
by Valeri Tandilashvili
5 years ago
0
Composer
Composer official doc
0
Removes several packages at the same time
composer remove vendor/package vendor/package2
by Valeri Tandilashvili
5 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
5 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
5 years ago
0
Composer
Composer official doc
1
Installs the latest version of the specified package
composer require phpunit/phpunit
by Valeri Tandilashvili
5 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
5 years ago
0
Composer
Composer official doc
1
Results: 1578