Adam T
Created a fork of Filament-Fabricator but it broke
So I think I've managed to narrow down the error to the package not being discovered in
composer dump-autoload
but it does install. I've never experienced this issue.
I've tried to change the repository to use "vcs" for the type, but that didn't install properly either.
Here is a chunk of the composer file in my main package:
3 replies
intl extension is required
hmm..
https://stackoverflow.com/questions/32764981/php-warning-module-already-loaded-in-unknown-on-line-0
This thread is suggesting a duplicate xdebug.
Its possible that you have another package that is being duplicated? I don't think I've seen this one in my experiences.
76 replies
intl extension is required
Sounds like intl is trying to get loaded in twice, I'll admit this is an area where I'm a bit foggy in as I normally deal with these when I'm debugging my own issues and then forget about it until the next time I'm setting up an environment.
So try just disabling intl in your php.ini, and see if it works?
76 replies
intl extension is required
If you have multiple versions of php on your system it may be trying to run using a different php version. You may need to do something like this:
Here's another SO link: https://magento.stackexchange.com/questions/272815/how-to-switch-between-php-versions-on-ubuntu-nginx
that also has switching with nginx in case you need that.
76 replies
intl extension is required
You may have to install intl for a specific php version. As shown in some of the answers from this SO page.
https://stackoverflow.com/questions/42243461/how-to-install-php-intl-extension-in-ubuntu-14-04
I am running WSL, but specifically a ubuntu app so this worked for me when I had intl issues.
76 replies