-
Notifications
You must be signed in to change notification settings - Fork 20
/
composer.json
82 lines (82 loc) · 1.86 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "subugoe/find",
"description": "A frontend for Solr indexes",
"type": "typo3-cms-extension",
"keywords": [
"TYPO3 CMS"
],
"license": [
"GPL-2.0-or-later"
],
"authors": [
{
"name": "Sven-S. Porst, Ingo Pfennigstorf",
"email": "pfennigstorf@sub.uni-goettingen.de",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"Subugoe\\Find\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"Subugoe\\Find\\Tests\\": "Tests/"
}
},
"replace": {
"typo3-ter/find": "self.version"
},
"require": {
"php": "> 8.0.0 < 8.3.0",
"ext-curl": "*",
"ext-json": "*",
"solarium/solarium": ">=6.0 <7.0",
"typo3/cms-core": "^11.5",
"typo3/cms-felogin": "^11.5"
},
"require-dev": {
"nimut/testing-framework": "^6.0",
"friendsofphp/php-cs-fixer": "^3.0",
"phpunit/phpunit": "^8.5",
"ssch/typo3-rector": "^1.0",
"phpspec/prophecy": "^1.15"
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin",
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
}
},
"scripts": {
"post-autoload-dump": [
"mkdir -p .Build/Web/typo3conf/ext/",
"[ -L .Build/Web/typo3conf/ext/find ] || ln -snvf ../../../../. .Build/Web/typo3conf/ext/find"
],
"rector-lint": "rector process --dry-run",
"rector-fix": "rector process",
"php-cs-lint": "php-cs-fixer fix --dry-run",
"php-cs-fix": "php-cs-fixer fix",
"lint": [
"@php-cs-lint",
"@rector-lint"
],
"fix": [
"@php-cs-fix",
"@rector-fix"
]
},
"suggest": {
"solarium/solarium": "Allows using the SolrServiceProvider"
},
"extra": {
"typo3/cms": {
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": ".Build/Web",
"extension-key": "find"
}
}
}