hungk53c / hello-world
the first composer package
dev-master
2019-05-29 08:50 UTC
Requires
- php: >=5.3.0
This package is not auto-updated.
Last update: 2026-03-13 16:29:35 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();