hungk53c/hello-world

the first composer package

dev-master 2019-05-29 08:50 UTC

This package is not auto-updated.

Last update: 2024-10-11 09:24:55 UTC


README

https://viblo.asia/p/tu-tao-composer-package-cho-php-n7prv33ovKod

Cách sử dụng Trên file composer.json của project muốn include package đó cần thêm vào dòng "require": { "kynm/hello-world": "dev-master" } Dùng lệnh : composer update để load package về project Trên file index của project cần require file autoload require_once DIR . '/vendor/autoload.php'; Khi sử dụng chỉ cần sử dụng đúng namespace: use kynm\SayHello\Sayhello; $hello = new SayHello(); echo $hello->world();