create a file called auth.json in the root of your project
and add this
{
"http-basic": {
"nova.laravel.com": {
"username": "EMAIL",
"password": "PASSWORD"
}
}
}
Based on the Nova guidance I added the API token into the composer.json in my project root but when using the "composer install" it fails to authenticate and asks for my account credentials. Here is my composer.json:
...
"repositories": [
{
"type": "composer",
"url": "https://nova.laravel.com",
"options": {
"http": {
"header": [
"API-TOKEN: MY-NOVA-API-TOKEN"
]
}
}
}
],
...
Please or to participate in this conversation.