所以我做了sudo apt-get install php5-mongo
,当我做composer require "mongodb/mongodb=~1.0.0"
时,我得到了这个:
Problem 1
- Installation request for mongodb/mongodb ~1.0.0 -> satisfiable by mongodb/mongodb[1.0.0].
- mongodb/mongodb 1.0.0 requires ext-mongodb ^1.1.0 -> the requested PHP extension mongodb is missing from your system.
当我dpkg -s php5-mongo
时,我得到了这个:
Package: php5-mongo
Status: install ok installed
Priority: optional
Section: php
Installed-Size: 326
Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
Architecture: amd64
Source: php-mongo
Version: 1.4.5-1build1
Depends: libc6 (>= 2.15), phpapi-20121212
Conffiles:
/etc/php5/mods-available/mongo.ini f2a4848fe0856c5bbaf2afc4aee7a1b9
Description: MongoDB database driver
This package provides an interface for communicating with the MongoDB database
in PHP.
Original-Maintainer: Laszlo Boszormenyi (GCS) <gcs@debian.org>
Homepage: http://www.mongodb.org/display/DOCS/PHP+Language+Center
问题是我的ext-mongodb安装太新了吗?根据dpkg的输出,我猜我正在运行ext-mongodb 1.4.5而不是https://github.com/mongodb/mongo-php-library所需的1.1.0
编辑:echo phpversion('mongo')
也获得1.4.5。
答案 0 :(得分:1)
我刚刚卸载了apt-get安装的php5-mongo版本,并使用pecl每http://mongodb.github.io/mongo-php-driver/#installation安装了它。
由于我必须手动安装所有依赖项,因此肯定会更烦人。尽管如此,如果apt-get没有在Ubuntu 14.04中安装任何可用的东西,似乎他们应该修复它..
答案 1 :(得分:0)
我在Ubuntu Launchpad上打开了一个请求,以获取可信任宇宙(Ubuntu14)的新php-mongodb驱动程序。它在xenial中可用,但是针对PHP7 API构建。 https://bugs.launchpad.net/ubuntu/+source/php-mongodb/+bug/1579815