Skip to content

Commit 16b02ce

Browse files
committed
adding section on applications
1 parent ddd62c3 commit 16b02ce

File tree

2 files changed

+58
-0
lines changed

2 files changed

+58
-0
lines changed

_includes/menu.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
<li class="{% if page.url contains "implementation" %}pure-menu-selected{% endif %}"><a href="/implementations">Implementations</a></li>
1414
<li class="{% if page.url contains "documentation" %}pure-menu-selected{% endif %}"><a href="/documentation">Documentation</a></li>
1515
<li class="{% if page.url contains "tool" %}pure-menu-selected{% endif %}"><a href="/tools">Tools</a></li>
16+
<li class="{% if page.url contains "application" %}pure-menu-selected{% endif %}"><a href="/applications">Applications</a></li>
1617
<li class="{% if page.url contains "community" %}pure-menu-selected{% endif %}"><a href="/community">Community</a></li>
1718
</ul>
1819
</div>

applications/index.md

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
---
2+
layout: default
3+
title: Applications
4+
---
5+
6+
This page tries to gather applications and libraries on top of PHPCR, as well as libraries that provide a PHPCR integration:
7+
8+
## Applications and Libraries
9+
10+
### Doctrine PHPCR-ODM
11+
12+
This variant of Doctrine provides an object-document mapper to store PHP
13+
objects in PHPCR. It provides built-in multilanguage support.
14+
15+
* Website: [www.doctrine-project.org](http://www.doctrine-project.org/projects/phpcr-odm.html)
16+
* Vendor: [Doctrine Project](http://www.doctrine-project.org)
17+
* Github: https://github.com/doctrine/phpcr-odm/
18+
19+
### Symfony Content Management Framework (CMF)
20+
21+
The CMF is built on top of Symfony2. It uses PHPCR-ODM as its default
22+
persistence layer. It provides content editing, menu handling, a block system,
23+
media management and utility functions such as a publish workflow.
24+
25+
* Website: [cmf.symfony.com](http://cmf.symfony.com)
26+
* Vendor: [Symfony CMF](http://cmf.symfony.com)
27+
* Github: https://github.com/symfony-cmf/
28+
29+
### Sulu 2.0
30+
31+
Sulu is an extensible CMS built directly on top of PHPCR. It comes with its own
32+
editing concept inspired by the iOS finder.
33+
34+
* Website: [www.sulu.io](http://www.sulu.io)
35+
* Vendor: [massiveart](http://www.massiveart.com)
36+
* Github: https://github.com/sulu-cmf/sulu
37+
38+
## Integrations
39+
40+
Hint: This list is not exhaustive. Check if your tools support PHPCR /
41+
PHPCR-ODM. If they don't, support is often simple to add, especially when
42+
Doctrine ORM is already supported.
43+
44+
* [LiipImagineBundle](https://github.com/liip/LiipImagineBundle/)
45+
* [PagerFanta](https://github.com/whiteoctober/pagerfanta)
46+
47+
## Framework Support
48+
49+
### Symfony2
50+
51+
The DoctrinePHPCRBundle integrates both PHPCR and PHPCR-ODM with the Symfony2
52+
framework. It allows you to configure multiple sessions and can automatically
53+
detect documents for PHPCR-ODM in bundles.
54+
55+
* Website: http://symfony.com/doc/master/cmf/bundles/phpcr_odm/introduction.html
56+
* Vendor: [Doctrine Project](http://www.doctrine-project.org)
57+
* Github: https://github.com/doctrine/DoctrinePHPCRBundle

0 commit comments

Comments
 (0)