Pete Norris
Pete Norris

Reputation: 1054

Composer.json getting latest package version and

For each new project, I want to:

I know I could manually specify latest versions from packagist.org, but Ideally I'd like this automated.

I hope this makes sense.

Thanks

Upvotes: 4

Views: 13401

Answers (2)

Sven
Sven

Reputation: 70933

Running composer require vendor/package will consult packagist.org for the most current released version and add both the latest release and the version requirement to get this release and compatible updates later.

This will install only stable versions.

After the initial install, you have two options:

  1. composer install will again install the previously found packages.
  2. composer update will look for updated packages that match the version requirement.

Never run update unattended. A developer should run this consciously and then run the test suite to determine if everything still works (or the continuous integration job does it if available). Especially only run install when deploying to production.

Upvotes: 3

kamil_oos
kamil_oos

Reputation: 174

  1. the latest package:

"require": { "namespace/libname": "@dev" }

  1. after install of this package, composer will dump all info (and version) to composer.lock. do not remove this file and do not use composer update. always use composer install because this will force composer to look into composer.lock file for package version

Upvotes: 6

Related Questions