-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
48 lines (48 loc) · 1.32 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
47
48
{
"name": "jackalope/jackalope-fs",
"type": "library",
"description": "Jackalope Transport library using the filesystem",
"keywords": ["transport implementation", "filesystem", "phpcr"],
"homepage": "http://jackalope.github.io",
"license": [
"MIT",
"Apache-2.0"
],
"authors": [
{
"name": "Jackalope Community",
"homepage": "https://github.com/jackalope/jackalope-jackrabbit/contributors"
}
],
"require": {
"php": "^7.2 || ^8.0",
"jackalope/jackalope": "^1.4.2",
"symfony/yaml": "^4.4 || ^5.0 || ^6.0",
"symfony/filesystem": "^4.4 || ^5.0 || ^6.0",
"symfony/event-dispatcher": "^4.4 || ^5.0 || ^6.0",
"symfony/event-dispatcher-contracts": "^1.0 || ^2.0",
"handcraftedinthealps/zendsearch": "^2.0"
},
"conflict": {
"phpcr/phpcr-utils": "<1.6.1",
"phpcr/phpcr": "<2.1.6"
},
"provide": {
"jackalope/jackalope-transport": "1.1.0"
},
"require-dev": {
"phpcr/phpcr-api-tests": "2.1.23",
"phpunit/phpunit": "^8.5.14"
},
"autoload": {
"psr-4": {
"Jackalope\\": "src/",
"Jackalope\\Test\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
}
}