Skip to content
This repository was archived by the owner on Sep 16, 2021. It is now read-only.

document jackalope requirements #128

Merged
merged 2 commits into from
Apr 24, 2013
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions bundles/phpcr-odm.rst
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ Out of the box, this bundle supports the following PHPCR implementations:
This bundle is based on the AbstractDoctrineBundle and thus is similar to the
configuration of the Doctrine ORM and MongoDB bundles.

Setup
-----
Setup and Requirements
----------------------

See :doc:`../tutorials/installing-configuring-doctrine-phpcr-odm`

Expand Down
8 changes: 3 additions & 5 deletions cookbook/installing-cmf-sandbox.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,15 @@ setup, please refer to:

.. index:: sandbox, install

Preconditions
-------------
Requirements
------------

As Symfony CMF Sandbox is based on Symfony2, you should make sure you
meet the `Requirements for running Symfony2 <http://symfony.com/doc/current/reference/requirements.html>`_.
`Git 1.6+ <http://git-scm.com/>`_, `Curl <http://curl.haxx.se/>`_ and PHP Intl are
also needed to follow the installation steps listed below.

If you wish to use Jackalope + Apache JackRabbit as the storage medium (recommended),
you will also need Java (JRE). For other mechanisms and its requirements,
please refer to their respective sections.
For the PHPCR repository requirements, see :ref:`PHPCR-ODM requirements <tutorials-phpcr-odm-requirements>`

Installation
------------
Expand Down
21 changes: 15 additions & 6 deletions tutorials/installing-configuring-doctrine-phpcr-odm.rst
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,19 @@ Finally for information about PHPCR see the `official PHPCR website <http://phpc

.. index:: PHPCR, ODM

Preconditions
-------------
- php >= 5.3
- libxml version >= 2.7.0 (due to a bug in libxml http://bugs.php.net/bug.php?id=36501)
- phpunit >= 3.6 (if you want to run the tests)
- Symfony2 (version 2.1.x)

.. _tutorial-phpcr-odm-requirements:

Requirements
------------

* Symfony2 (version 2.1 or newer)
* phpunit >= 3.6 (if you want to run the tests)
* When using **jackalope-jackrabbit**: Java, Apache Jackalope and libxml
version >= 2.7.0 (due to a `bug in libxml`_)
* When using **jackalope-doctrine-dbal with MySQL**: MySQL >= 5.1.5
(as you need the xml function ``ExtractValue``)


Installation
------------
Expand Down Expand Up @@ -356,3 +363,5 @@ The bundle provides a ``ValidPhpcrOdm`` constraint validator you can use to chec
protected $parent;

...

.. _`bug in libxml`: http://bugs.php.net/bug.php?id=36501)