WebService only install

Hello,

I have a Yii application running, that only has a REST Webservice.

So I don’t need any assets.

What is the easiest way to install using composer without any assets…

Thanks,

Urkman

Is there simply no way to do this?

Even though your question does not make much sense, you can turn off publishing assets by configuring ../config/web.php:




'components' => [

    ...

    'assetManager' => [

	'bundles' => false,

    ],

    ...

],