How can I check latest available version of Symfony with any API?

Victor Bocharsky

I want to get latest available version of Symfony Framework. Can I get it with any available API (maybe with Composer or any web services)?

Matthew Blackford

The official Symfony roadmap API can give you the most recent LTS, Stable, and Beta versions available.

Making a call to

https://symfony.com/roadmap.json?version=all

Will return something similar to

{
  "symfony_versions": {
    "lts": "2.8.5",
    "stable": "3.0.5",
    "beta": "3.1.0-DEV"
  },
  "latest_stable_version": "3.0",
  "version": "all",
  "error_message": "Wrong version format (should be X.Y or X.Y.Z where X, Y, and Z are integers)."
}

Note that this is an undocumented use of the API, as you trick it by not supplying a valid version number. This prompts the API to return a JSON object listing the current versions. Although undocumented, I think you can safely use this because the Symfony project has a strong history of maintaining backwards compatibility.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How can I check the available version of a package in the repositories?

From Dev

Can I tell bindingRedirect to always use the latest available version?

From Dev

Can I tell bindingRedirect to always use the latest available version?

From Dev

How can revisionId in libraryDependencies be the latest available version in SBT 0.13+?

From Dev

How do I get the latest GIMP version available?

From Dev

How can I install the latest version of Tor?

From Dev

How can I install the latest version of Tor?

From Dev

How I can determine the latest version in URL?

From Dev

How can I install the latest version of libmtp?

From Dev

Can I check latest version of play store from another app?

From Dev

How I can check if it something available in socket?

From Dev

How can I check if a string is available in a table?

From Dev

How can I bypass available memory check?

From Dev

Nexus: How can I download latest minor version of artifact using nexus rest api

From Dev

How can I check if a user is logged in in Symfony?

From Dev

How to update Kubernetes Cluster to the latest version available?

From Dev

How to upgrade Pulseaudio to the latest available version?

From Dev

How to upgrade Pulseaudio to the latest available version?

From Dev

How to update Manjaro to the latest version available?

From Java

How can I check the system version of Android?

From Dev

How can I check the LIB file version?

From Java

How can I get latest version of nano (4.5) on CentOS 7?

From Dev

How can I specify the latest commit version in Gradle

From Dev

How can I install the latest upstream version of ImageMagick without compiling?

From Dev

How can I use the latest version of Imagemagick on Heroku?

From Dev

How can I update my nodeJS to the latest version?

From Dev

How can I install the latest upstream version of ImageMagick without compiling?

From Dev

How can I update my nodeJS to the latest version?

From Dev

How can I update gcc to the latest version in Ubuntu 10.04?

Related Related

  1. 1

    How can I check the available version of a package in the repositories?

  2. 2

    Can I tell bindingRedirect to always use the latest available version?

  3. 3

    Can I tell bindingRedirect to always use the latest available version?

  4. 4

    How can revisionId in libraryDependencies be the latest available version in SBT 0.13+?

  5. 5

    How do I get the latest GIMP version available?

  6. 6

    How can I install the latest version of Tor?

  7. 7

    How can I install the latest version of Tor?

  8. 8

    How I can determine the latest version in URL?

  9. 9

    How can I install the latest version of libmtp?

  10. 10

    Can I check latest version of play store from another app?

  11. 11

    How I can check if it something available in socket?

  12. 12

    How can I check if a string is available in a table?

  13. 13

    How can I bypass available memory check?

  14. 14

    Nexus: How can I download latest minor version of artifact using nexus rest api

  15. 15

    How can I check if a user is logged in in Symfony?

  16. 16

    How to update Kubernetes Cluster to the latest version available?

  17. 17

    How to upgrade Pulseaudio to the latest available version?

  18. 18

    How to upgrade Pulseaudio to the latest available version?

  19. 19

    How to update Manjaro to the latest version available?

  20. 20

    How can I check the system version of Android?

  21. 21

    How can I check the LIB file version?

  22. 22

    How can I get latest version of nano (4.5) on CentOS 7?

  23. 23

    How can I specify the latest commit version in Gradle

  24. 24

    How can I install the latest upstream version of ImageMagick without compiling?

  25. 25

    How can I use the latest version of Imagemagick on Heroku?

  26. 26

    How can I update my nodeJS to the latest version?

  27. 27

    How can I install the latest upstream version of ImageMagick without compiling?

  28. 28

    How can I update my nodeJS to the latest version?

  29. 29

    How can I update gcc to the latest version in Ubuntu 10.04?

HotTag

Archive