Popularity
4.8
Growing
Activity
5.5
-
441
33
35

Description

This repository contains interfaces for the PHPCR standard.

The JSR-283 specification defines an API for a Content Repository (CR). The PHP Content Repository Interfaces aims 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.io

Code Quality Rank: L4
Programming language: PHP
License: GNU General Public License v3.0 or later
Latest version: v2.1.6

PHPCR alternatives and similar libraries

Based on the "Miscellaneous" category.
Alternatively, view PHPCR alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of PHPCR or a related project?

Add another 'Miscellaneous' Library

README

PHP Content Repository PHPCR Build Status

This repository contains interfaces for the PHPCR standard.

The JSR-283 specification defines an API for a Content Repository (CR). The PHP Content Repository Interfaces aims 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.io

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 expressiveness 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

Tests

Unit tests

As PHPCR is an API definition, there is not much to test on it without an implementation. Nonetheless, there are a few concrete classes that do have unit tests. Simply run them with phpunit -c tests/

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 developed.

  • 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.

The following are a work in progress:

  • Jackalope-MongoDB: Storing data in a MongoDB database.
  • Jackalope-Prismic: Storing data in the Prismic.io content repository as a service.
  • Jackalope-Midgard1 (not online afaik): Read access to the midgard 1.0 server.
  • Midgard2: PHPCR interfaces for the midgard2 content repository.

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.

Utilities

  • phpcr-utils: A couple of utility classes and console commands to work with phcpr, independent of the implementation.
  • PHPCR Shell: The PHPCR Shell aims to provide a complete shell interface to any PHPCR repository.
  • Marmelab PHPCR Browser: Angular JS based PHPCR repository browser. Currently only supports Jackalope-Jackrabbit and Jackalope-Doctrine-DBAL.

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.