skip to Main Content

How to fix fzaninotto/faker packagist
"This package is abandoned and no longer maintained. No replacement package was suggested."
in composer 2.0.11 version and i used php 8.0.0?

2

Answers


  1. You can use the new package faker (fork).

    Remove the faker abandoned

    composer remove vendor/fzaninotto/faker
    

    Install the new package

    composer require fakerphp/faker
    

    And replace it in your composer.json

    "require-dev": {
        "fakerphp/faker": "^1.13.0",
    }
    
    Login or Signup to reply.
  2. The quick way is

    composer remove fzaninotto/faker
    

    Then install

    composer require fakerphp/faker --dev
    
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search