How to know Laravel version and where is it defined?

后端 未结 10 1104
陌清茗
陌清茗 2021-01-30 01:50

How to know Laravel version and where is it defined?

Is Laravel version is defined inside my application directory or somewhere in global server side directory?

10条回答
  •  迷失自我
    2021-01-30 02:41

    If you want to know the specific version then you need to check composer.lock file and search For

    "name": "laravel/framework",

    you will find your version in next line

    "version": "v5.7.9",

提交回复
热议问题