-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
46 lines (46 loc) · 1.2 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
39
40
41
42
43
44
45
46
{
"name": "jackalope/jackalope-contentfull",
"type": "library",
"description": "PHPCR implementation based on the contentful api",
"keywords": ["transport implementation", "contentful", "phpcr"],
"homepage": "http://jackalope.github.io",
"license": [
"MIT",
"Apache-2.0"
],
"minimum-stability": "dev",
"authors": [
{
"name": "Jackalope Community",
"homepage": "https://github.com/jackalope/jackalope-jackrabbit/contributors"
}
],
"require": {
"php": ">=5.3.3",
"contentful/contentful": "dev-master",
"phpcr/phpcr": "~2.1.0",
"phpcr/phpcr-utils": "~1.1.0",
"jackalope/jackalope": "~1.1.1"
},
"provide": {
"jackalope/jackalope-transport": "1.1.0"
},
"require-dev": {
"psr/log": "~1.0",
"phpcr/phpcr-api-tests": "2.1.0",
"doctrine/dbal": "^2.5",
"phpunit/phpunit": "dev-master",
"phpunit/dbunit": "dev-master"
},
"autoload": {
"psr-0": {
"Jackalope\\": "src/"
}
},
"bin": ["bin/jackalope"],
"extra": {
"branch-alias": {
"dev-master": "1.1-dev"
}
}
}