Skip to content

Latest commit

 

History

History
84 lines (55 loc) · 4.16 KB

README.md

File metadata and controls

84 lines (55 loc) · 4.16 KB

Interfaces for the PHP Content Repository PHPCR.

The JSR-283 specification defines an API for a Content Repository (CR). The PHP Content Repository Interfaces aim to provide that API in PHP. PHPCR is part of JSR-333, the next version of the Java Content Repository.

There is a bunch of information here: http://phpcr.github.com

Documentation

Introduction

PHP content repository is an API. That is, it defines a standardized way how to access and manipulate content. As with any general API, the main goal is to decouple the backend from the frontend. If you code against the PHPCR API, your code should run with all PHPCR implementations. David Nuescheler, the lead of JCR, provides the following advantages of using a content repository

  • Functional Definition of a “Content Repository”
  • Common Vocabulary!
  • No longer learn (dozens of) (ugly) proprietary APIs
  • Write (mostly) portable code, for Document Management, Web Content Management, Source Code Control
  • Compare Repository Functionality
  • No more information silos and vendor Lock-in Content-Centric Infrastructure

PHPCR is adapted from the Java Content Repository (JCR) standard because that is a widely used and well thought through standard. There exist a couple of implementations for PHPCR that you can use. See below for a list of known implementations.

Further reading

Port Status

The PHPCR is following the Java Content Repository JCR API closely where appropriate. In the points where Java and PHP differ, we tried to follow the logic of PHP while keeping the spirit of the original API. The API has the same expressivnes as the Java API. Most of the JSR-283/JSR-333 documentation and code examples should be usable as-is.

Main differences between PHPCR and JCR are

  • PHP has no method overloading. Same-name methods that differ only by parameter number and/or type have been merged into one method.
  • PHP is weak typed, which makes the Value interface and the large number of almost-identical iterators obsolete.

An exhaustive list of the differences between PHPCR and JCR is in the file doc/JCR_TO_PHPCR.txt

API Tests

An API test suite for the functionality of PHPCR is available at https://github.com/phpcr/phpcr-api-tests/ All implementations have to test against this test suite to make sure they are interchangeable with each other.

Implementations

Jackalope separates the content repository logic from the storage backend. Several backend drivers are currently being developped.

  • Jackalope-Jackrabbit: Mapping requests to a java Jackrabbit instance. To day the most feature complete implementation.

  • Jackalope-DoctrineDBAL: Storing data in a relational database using the Doctrine Database Abstraction Layer.

  • Jackalope-MongoDB: Storing data in a MongoDB database.

  • Jackalope-Midgard1 (not online afaik): Read access to the midgard 1.0 server.

  • Midgard2: PHPCR interfaces for the midgard2 content repository.

  • phpcr-utils: A couple of utility classes and console commands to work with phcpr, independent of the implementation.

If you work on your own implementation, please let us know so we can add it here right away. Even if its not yet working, others might want to join in and help.

Dependencies

PHPCR provides a composer.json for Composer and is available through Packagist.

History

The API was originally ported from Java to PHP by Karsten Dambekalns with the help of others for the typo3/flow3 project.

A first attempt at a port of JSR-170 to php has been made by SimPCoRe, but it seems no applications have been published. That version never tried to provide an API, but just implemented the Java interfaces literally.