How to know Laravel version and where is it defined?

后端 未结 10 1103
陌清茗
陌清茗 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:35

      1)  php artisan -V
    
      2)  php artisan --version
    

    AND its define at the composer.json file

    "require": {
            ...........
            "laravel/framework": "^6.2",
            ...........
        },
    

提交回复
热议问题