-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
38 lines (38 loc) · 1.04 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"name": "midgard/phpcr",
"type": "library",
"description": "PHP Content Repository implementation using Midgard2",
"keywords": ["phpcr", "contentrepository", "midgard", "midgard2"],
"homepage": "http://midgard-project.org/phpcr/",
"license": "GNU LGPL",
"authors": [
{
"name": "Henri Bergius",
"email": "[email protected]",
"homepage": "http://bergie.iki.fi/"
},
{
"name": "Piotr Pokora",
"email": "[email protected]",
"homepage": "http://blogs.nemein.com/people/piotras/"
}
],
"require": {
"php": ">=5.3.0",
"phpcr/phpcr": ">=2.1.0-beta5",
"phpcr/phpcr-utils": "@dev",
"ext-midgard2": ">=10.05.6"
},
"provide": {
"phpcr/phpcr-implementation": "2.1.0-beta3"
},
"require-dev": {
"phpcr/phpcr-api-tests": "dev-master",
"ext-midgard2": ">=10.05.5"
},
"autoload": {
"psr-0": {
"Midgard\\PHPCR\\": "src"
}
}
}