-2

Am trying to update composer dependencies on a Laravel application but getting this error

Problem 1 - The requested PHP extension ext-calender* is missing from your system. Install or enable PHP's calendar extension.

in my composer.json file

{
    "require": {
        "php": ">=7.2.0",
        "ext-json": "*",
        "ext-calender": "*",
    }
}
Jonathan
  • 39
  • 8

1 Answers1

1

Sorry, I just make a mistake in composer.json

instead "ext-calender": "*", it should be "ext-calendar": "*",

Wrong spelling 'e' and 'a'

Jonathan
  • 39
  • 8