Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Atualização do Laravel para versão 11 barrada por dependência #747

Open
mhcgolds opened this issue Jun 7, 2024 · 1 comment
Open

Comments

@mhcgolds
Copy link

mhcgolds commented Jun 7, 2024

Ao tentar atualizar o Laravel da versão 10 para 11, atualizei o laravel-boleto da 0.10.0 para a 0.11.1 e rodei o composer update. A lib principal parece ter dado certo, mas a lib dependente laravel-mail-auto-embed está barrando a atualização:

eduardokum/laravel-boleto 0.11.1 requires eduardokum/laravel-mail-auto-embed dev-master -> found eduardokum/laravel-mail-auto-embed[dev-master] but it does not match your minimum-stability.

Algumas partes do composer.json:

"require": {
        "php": "^8.1",
        "laravel/framework": "^11.0",
        "eduardokum/laravel-boleto": "0.11.1",
},
"config": {
        "optimize-autoloader": true,
        "preferred-install": "dist",
        "sort-packages": true
},
"minimum-stability": "stable",
"prefer-stable": true,

PHP 8.3, Composer 2.7.6. Alguma dica de como corrigir isso ?

@WesleiSantos
Copy link

WesleiSantos commented Jun 25, 2024

Adicionei isso "eduardokum/laravel-mail-auto-embed": "dev-master" ao composer.json

"require": {
        "php": "^8.1",
        "laravel/framework": "^11.0",
        "eduardokum/laravel-boleto": "0.11.1",
          "eduardokum/laravel-mail-auto-embed": "dev-master",
},
"config": {
        "optimize-autoloader": true,
        "preferred-install": "dist",
        "sort-packages": true
},
"minimum-stability": "stable",
"prefer-stable": true,

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants