# Live Sync
    #windows
        rmdir "C:\xampp\htdocs\core"
        mklink /D "C:\xampp\htdocs\servital\backend\vendor\root\src" "C:\xampp\htdocs\core\root\src" 
    #mac os
        rm -rf /path/to/project/vendor/root
        ln -s /path/to/core/root/src /path/to/project/vendor/root/src

#create core.php (config file) if not Create auto 
    php artisan vendor:publish --tag=core-config

#inatll and update config file(core.php) manual
    composer run-script post-install-cmd

#install package last version
    composer require root/core:^1.0.0

#install package dev version
    composer require root/core:@dev