1. 程式人生 > 其它 >2.5.1 compser的專案依賴管理

2.5.1 compser的專案依賴管理

技術標籤:thinkphp5 框架原理與實戰 讀書筆記

composer依賴管理安裝

topthink/think-helper助手包的使用
網站根目錄下執行

composer require topthink/think-helper=~1.0

開啟vendor/topthink/think-helper/composer.json,找到名稱空間的配置

student.php

<?php

use think\helper\Time;

public function test()
{
	var_dump(Time::today());
}


解除安裝依賴包

composer remove topthink/
think-helper