-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
41 lines (41 loc) · 997 Bytes
/
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
{
"name": "networkteam/solr-commands",
"type": "typo3-cms-extension",
"description": "A TYPO3 Extension providing command line commands for EXT:solr. IndexQueue initialisation. Indexing. Garbage collection. All sites at once.",
"license": [
"GPL-2.0-or-later"
],
"require": {
"apache-solr-for-typo3/solr": "^13 || 13.0.x-dev",
"typo3/cms-core": "^13.4"
},
"autoload": {
"psr-4": {
"Networkteam\\SolrCommands\\": "Classes/"
}
},
"scripts": {
"phpstan": "phpstan analyse --level 5 Classes"
},
"extra": {
"typo3/cms": {
"extension-key": "solr_commands",
"web-dir": ".Build/Web"
},
"branch-alias": {
"dev-master": "13.4.x-dev"
}
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin",
"sort-packages": true,
"allow-plugins": {
"typo3/cms-composer-installers": true,
"typo3/class-alias-loader": true
}
},
"require-dev": {
"phpstan/phpstan": "^1.11"
}
}