jsxc / jsxc.roundcube

JavaScript XMPP Client for roundcube
http://www.jsxc.org
MIT License
9 stars 6 forks source link

Install procedure not working #4

Closed aacunha closed 6 years ago

aacunha commented 7 years ago

The installation with composer is not working:

root@webmail2:/var/www/roundcubemail-teste# php composer.phar install Do not run Composer as root/super user! See https://getcomposer.org/root for details Loading composer repositories with package information Updating dependencies (including require-dev) Your requirements could not be resolved to an installable set of packages.

Problem 1

Potential causes:

Only i can get the plugin via git clone

yennor commented 7 years ago

i've got exactly the same problem, add { "type": "vcs", "url": "https://github.com/jsxc/jsxc.roundcube.git" }

to composer.json under repositories

freakyc commented 6 years ago

I added the above and it still wouldn't install. I ended up adding "minimum-stability": "dev", to composer.json and then ran php composer.phar update and it installed

I figured there was a better way to install it so I changed the line to "minimum-stability": "stable", and then changed "jsxc/jsxc": ">=1.0" to "jsxc/jsxc": "@dev"

It's updated properly now after running php composer.phar update so I assume it would've installed properly in the first place.

dteleguin commented 6 years ago

Sorry for making you wait. The procedure should work now as described in README, please test.

aacunha commented 6 years ago

@dteleguin , is working now (tested on roundcube 1.3.3)! Thanks!!!