-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
62 lines (62 loc) · 1.54 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
{
"name": "weakbit/lucene-cache",
"description": "Provides a cache backend for TYPO3 that stores all cache information in Lucene",
"license": [
"GPL-2.0-or-later"
],
"type": "typo3-cms-extension",
"authors": [
{
"name": "Stefan Lamm",
"email": "lucene-cache@webentwicklung-lamm.de"
}
],
"require": {
"php": "~8.1.0 || ~8.2.0 || ~8.3.0",
"typo3/cms-core": "~11.5.0 || ~12.4.0",
"zf1s/zend-search-lucene": "^1.15.5"
},
"require-dev": {
"nimut/testing-framework": "^6.0.1",
"phpstan/extension-installer": "^1.1",
"pluswerk/grumphp-config": "^6.8.0",
"rybakit/msgpack": "*",
"saschaegerer/phpstan-typo3": "^1.1",
"ssch/typo3-rector": "^1.1.3",
"typo3/cms-adminpanel": "^11.0 || ^12.0"
},
"suggest": {
"ext-zlib": "Possibility to save disk space",
"rybakit/msgpack": "To get a smaller and faster serialization of data"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Weakbit\\LuceneCache\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"Weakbit\\LuceneCache\\Tests\\": "Tests/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"phpro/grumphp": true,
"phpstan/extension-installer": true,
"pluswerk/grumphp-config": true,
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
}
},
"extra": {
"typo3/cms": {
"extension-key": "lucene_cache"
}
},
"scripts": {
"test": "@php ./vendor/bin/phpunit"
}
}