create a file called auth.json in the root of your project
and add this
{
"http-basic": {
"nova.laravel.com": {
"username": "EMAIL",
"password": "PASSWORD"
}
}
}
Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.
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.