Skip to content

doctrine/phpcr-odm

Folders and files

NameName
Last commit message
Last commit date

Latest commit

f2f7406 · May 5, 2024
Apr 3, 2024
May 1, 2023
Jan 12, 2021
Jan 1, 2023
Apr 3, 2024
May 5, 2024
Oct 19, 2013
May 5, 2024
Apr 3, 2024
May 1, 2023
Aug 30, 2023
Apr 21, 2023
Aug 16, 2014
May 5, 2024
May 11, 2012
Dec 3, 2023
Jul 24, 2014
Apr 2, 2024
Apr 2, 2024
Apr 3, 2024
Jun 20, 2016
Apr 10, 2023
May 1, 2023

Repository files navigation

PHPCR ODM for Doctrine

Build Status Latest Stable Version Total Downloads

Requirements

Documentation

Please refer to doctrine-project.org for the documentation.

Contributing

Pull requests are welcome. Please include tests to prevent regressions whenever possible.

Thanks to everyone who has contributed already.

Running the tests

There are separate test setups for the doctrine-dbal and the jackrabbit PHPCR implementations. Before installing the composer dependencies, you will need to prepare the database for storage and choose a phpcr/phpcr-implementation. Doing so will change the composer.json file - please make sure you do not check in this change into version control.

Setting up to test with Jackrabbit

  1. Make sure you have java and wget installed, then run this script to install and start jackrabbit:
        tests/script_jackrabbit.sh
    
  2. Require the PHPCR implementation:
         composer require jackalope/jackalope-jackrabbit --no-update
    
  3. Now you can install all dependencies with:
        composer install
    
  4. Now you can run the tests:
    vendor/bin/phpunit -c tests/phpunit_jackrabbit.xml.dist
    
    You can also copy the phpunit dist file to ./phpunit.xml to have it selected by default, or if you need to customize any configuration options.

Setting up to test with Doctrine-DBAL

  1. For doctrine-dbal, make sure that MySQL is installed. If the connection parameters in cli-config.doctrine_dbal.php.dist are not correct, manually create cli-config.php and adjust the options as needed. Then run the script to initialize the repository in the database:
        tests/script_doctrine_dbal.sh
    
  2. Require the PHPCR implementation
        composer require jackalope/jackalope-doctrine-dbal --no-update
    
  3. Now you can install all dependencies with:
        composer install
    
  4. Now you can run the tests:
    vendor/bin/phpunit -c tests/phpunit_doctrine_dbal.xml.dist
    
    You can also copy the phpunit dist file to ./phpunit.xml to have it selected by default, or if you need to customize any configuration options.