当前位置:网站首页>What kind of methods or functions can you view the laravel version of a project?

What kind of methods or functions can you view the laravel version of a project?

2022-07-07 12:49:00 Full stack programmer webmaster

 see composer.json file :
"require": {
"php": ">=7.0.0",
"fideloper/proxy": "~3.3",
"laravel/framework": "5.5.*",
"laravel/tinker": "~1.0"
},
 Use command 

php artisan --version

 Or check out composer.json in require Of laravel/framework, You can see the large version 

{
    "name": "laravel/laravel",
    "description": "The Laravel Framework.",
    "keywords": ["framework", "laravel"],
    "license": "MIT",
    "require": {
        "laravel/framework": "4.2.*",
    }
    ....
}

Publisher : Full stack programmer stack length , Reprint please indicate the source :https://javaforall.cn/113479.html Link to the original text :https://javaforall.cn

原网站

版权声明
本文为[Full stack programmer webmaster]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/188/202207071036123312.html