This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Pages: [1]
1
PHP / Re: PHP dependencies missing for composer apcu extension for install Akeneo
« on: December 12, 2022, 04:17:42 AM »
I Think There is Problem with FrameworkExtraBundle as error suggested error itself You should avoid it. Use Symfony\Component\Routing\Annotation\Route as like given below.
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
#❎ This is Given Error Dont Use Above
use Symfony\Component\Routing\Annotation\Route;
#✅ this will resolve your error
And now, your error will be solved.
REFF. https://perfectans.net/question/22/package-sensio-framework-extra-bundle-is-abandoned-you-should-avoid-using-it-use-symfony-instead
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
#❎ This is Given Error Dont Use Above
use Symfony\Component\Routing\Annotation\Route;
#✅ this will resolve your error
And now, your error will be solved.
REFF. https://perfectans.net/question/22/package-sensio-framework-extra-bundle-is-abandoned-you-should-avoid-using-it-use-symfony-instead
Pages: [1]