Hello everyone, i have an issue to install Elementor Pro as a guide here [Composer | Elementor Developers](https://elementor doc)
This is part of my composer.json
...
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org",
"only": ["wpackagist-plugin/*", "wpackagist-theme/*"]
},
{
"type": "composer",
"url": "https://composer.elementor.com",
"only": ["elementor/elementor-pro"]
},
{
"type": "vcs",
"url": "https://github.com/***/***.git"
},
...
"require": {
"php": ">=8.0",
"composer/installers": "^2.2",
"ffraenz/private-composer-installer": "*",
"elementor/elementor-pro": "^3.23",
...
I have created auth.json file where i have this
{
"http-basic": {
"composer.elementor.com": {
"username": "token",
"password": "***"
}
},
"github-oauth": {
"github.com": "github_pat_***"
}
}
when I use composer update locally it will install everything correctly but then when i do deploy to remote environment i get the following error
"Installing dependencies from lock file Verifying lock file contents can be installed on current platform. Package operations: 63 installs, 0 updates, 0 removals - Downloading elementor/elementor-pro (3.23.1)…
Has anybody experience anything like it. For example in another project when I have WPMU this works perfectly fine.
also see this in the error message
*Git.php line 473:\n \n Failed to execute git clone --mirror – ‘git@github.com:elementor/elementor \n -pro.git’ ‘/home/web/.cache/composer/vcs/git-github.com-elementor-elementor \n -pro.git/’ \n \n Cloning into bare repository ‘/home/web/.cache/composer/vcs/git-github.com- \n elementor-elementor-pro.git’… \n ERROR: Repository not found. \n fatal: Could not read from remote repository. \n \n Please make sure you have the correct access rights \n and the repository exists. *