composer is ignoring installer-paths configuration

后端 未结 4 1668
梦谈多话
梦谈多话 2021-02-06 05:29

I\'m try using CakePHP for the first time with composer, but I have some problems.

I have this composer.json:

{
  \"name\": \"example.com.br         


        
4条回答
  •  傲寒
    傲寒 (楼主)
    2021-02-06 05:38

    Use option "script" of composer (work only with linux) :

    "scripts": {
            "post-install-cmd": [
                "php -r \"system('mv '.getcwd().'/Vendor/smottt/wideimage '.getcwd().'/Vendor/Wideimage');\""
            ]
        }
    

提交回复
热议问题