-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
63 lines (63 loc) · 1.42 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "pucene/seal-adapter",
"description": "Seal Adapter for pucene.",
"license": "MIT",
"autoload": {
"psr-4": {
"Pucene\\SealAdapter\\": ""
},
"exclude-from-classmap": [
"Tests/",
"examples/"
]
},
"autoload-dev": {
"psr-4": {
"Pucene\\SealAdapter\\Tests\\": "Tests/"
}
},
"authors": [
{
"name": "Johannes Wachter",
"email": "johannes@sulu.io"
}
],
"require": {
"php": "^8.1",
"pucene/index": "^0.1@dev",
"pucene/dbal-driver": "^0.1@dev",
"schranz-search/seal": "^0.1@dev"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"phpspec/prophecy-phpunit": "^2.0"
},
"scripts": {
"test": "@phpunit Tests",
"phpunit": "vendor/bin/phpunit --bootstrap vendor/autoload.php"
},
"minimum-stability": "dev",
"repositories": [
{
"type": "path",
"url": "../analysis",
"options": {
"symlink": true
}
},
{
"type": "path",
"url": "../dbal-driver",
"options": {
"symlink": true
}
},
{
"type": "path",
"url": "../index",
"options": {
"symlink": true
}
}
]
}