Hello,
I need to install a php5-imap extension for my project, and It’s impossible to do that with a pre dependency or something else…
I configure circleci to use the php 5.6.14 and it will install the php-imap for php 5.3 (default version)
I just added in my circle.yml
machine: php: version: 5.6.14 dependencies: pre: - sudo apt-get install php5-imap
How can I install the PHP imap extension & run the test without problem ?
Thanks by advance.
Regards