forked from TYPO3-Solr/solr-ddev-site
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
79 lines (79 loc) · 3.03 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
{
"name": "dkd/apache-solr-for-typo3-dev-distribution",
"description": "TYPO3 CMS Base Distribution",
"license": "GPL-2.0-or-later",
"config": {
"platform": {
"php": "7.4"
}
},
"repositories": {
"0": {
"type": "path",
"url": "packages/*"
}
},
"require": {
"ext-json": "*",
"ext-pdo": "*",
"typo3/cms-composer-installers": "^3.0.1",
"typo3/minimal": "^10.4",
"typo3/cms-about": "^10.4.13",
"typo3/cms-adminpanel": "^10.4.13",
"typo3/cms-belog": "^10.4.13",
"typo3/cms-beuser": "^10.4.13",
"typo3/cms-felogin": "^10.4.13",
"typo3/cms-fluid-styled-content": "^10.4.13",
"typo3/cms-form": "^10.4.13",
"typo3/cms-impexp": "^10.4.13",
"typo3/cms-info": "^10.4.13",
"typo3/cms-lowlevel": "^10.4.13",
"typo3/cms-redirects": "^10.4.13",
"typo3/cms-reports": "^10.4.13",
"typo3/cms-rte-ckeditor": "^10.4.13",
"typo3/cms-setup": "^10.4.13",
"typo3/cms-seo": "^10.4.13",
"typo3/cms-scheduler": "^10.4.13",
"typo3/cms-sys-note": "^10.4.13",
"typo3/cms-t3editor": "^10.4.13",
"typo3/cms-tstemplate": "^10.4.13",
"typo3/cms-viewpage": "^10.4.13",
"typo3/cms-filemetadata": "^10.4.13",
"typo3-console/composer-auto-commands": "^0.4.2",
"typo3-console/composer-typo3-auto-install": "^0.4",
"helhum/typo3-console": "^6.6.0",
"dkd/apache-solr-for-typo3-sitepackage": "@dev",
"apache-solr-for-typo3/solr": "@dev",
"symfony/expression-language": "5.1.11"
},
"require-dev": {
"phpunit/phpunit": "^7 | ^8 | ^9",
"nimut/testing-framework": "^5 | ^6"
},
"autoload-dev": {
"psr-4": {
"TYPO3\\CMS\\Core\\Tests\\": "public/typo3/sysext/core/Tests/",
"ApacheSolrForTypo3\\Solr\\Tests\\": "public/typo3conf/ext/solr/Tests/",
"ApacheSolrForTypo3\\Solrconsole\\Tests\\": "public/typo3conf/ext/solrconsole/Tests/",
"ApacheSolrForTypo3\\Solrdebugtools\\Tests\\": "public/typo3conf/ext/solrdebugtools/Tests/",
"ApacheSolrForTypo3\\Solrfal\\Tests\\": "public/typo3conf/ext/solrfal/Tests/",
"ApacheSolrForTypo3\\Solrfluidgrouping\\Tests\\": "public/typo3conf/ext/solrfluidgrouping/Tests/",
"ApacheSolrForTypo3\\Solrmlt\\Tests\\": "public/typo3conf/ext/solrmlt/Tests/",
"ApacheSolrForTypo3\\Tika\\Tests\\": "public/typo3conf/ext/tika/Tests/"
}
},
"scripts": {
"typo3-cms-scripts": [
"typo3cms install:generatepackagestates",
"typo3cms install:fixfolderstructure",
"typo3cms cache:flush"
],
"import-not-exportable-by-impexp-once": [
"./packages/apache_solr_for_typo3_sitepackage/Initialisation/not_covered_by_impexp.sh"
],
"post-autoload-dump": [
"@typo3-cms-scripts",
"@import-not-exportable-by-impexp-once"
]
}
}