-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
80 lines (80 loc) · 2.32 KB
/
Copy pathcomposer.json
File metadata and controls
80 lines (80 loc) · 2.32 KB
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
{
"name": "lochmueller/index",
"description": "Smart and flexible async indexing of pages and documents for search engines, AI providers, and other external systems.",
"license": "GPL-2.0-or-later",
"type": "typo3-cms-extension",
"keywords": [
"typo3",
"index",
"indexing",
"traversing",
"search"
],
"require": {
"php": "^8.3",
"typo3/cms-backend": "^13.4 || ^14.2",
"typo3/cms-core": "^13.4 || ^14.2",
"typo3/cms-frontend": "^13.4 || ^14.2",
"typo3/cms-reactions": "^13.4 || ^14.2",
"typo3/cms-webhooks": "^13.4 || ^14.2"
},
"require-dev": {
"bk2k/bootstrap-package": "^16.0",
"friendsofphp/php-cs-fixer": "^3.84",
"friendsoftypo3/content-blocks": "^1.0 || ^2.0",
"friendsoftypo3/tt-address": "^10.0",
"lochmueller/calendarize": "^14.0",
"phpoffice/phppresentation": "dev-master as 1.2.1",
"phpoffice/phpspreadsheet": "^5.4",
"phpoffice/phpword": "^1.4",
"phpstan/phpstan": "^2.1",
"smalot/pdfparser": "^2.12",
"typo3/testing-framework": "^9.3"
},
"suggest": {
"phpoffice/phppresentation": "For file extraction process of Powerpoint files.",
"phpoffice/phpspreadsheet": "For file extraction process of Excel files.",
"phpoffice/phpword": "For file extraction process of Word files.",
"smalot/pdfparser": "For file extraction process of PDF files."
},
"autoload": {
"psr-4": {
"Lochmueller\\Index\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"Lochmueller\\Index\\Tests\\": "Tests/"
}
},
"config": {
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
},
"bin-dir": ".Build/bin",
"vendor-dir": ".Build/vendor"
},
"extra": {
"typo3/cms": {
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"extension-key": "index",
"web-dir": ".Build/Web"
}
},
"scripts": {
"code-check": [
"@phpstan"
],
"code-fix": [
"@php-cs-fixer"
],
"code-test": [
"@phpunit"
],
"code-test-coverage": "XDEBUG_MODE=coverage phpunit -c Tests/UnitTests.xml --coverage-html .Build/coverage/",
"php-cs-fixer": "php-cs-fixer fix --allow-unsupported-php-version yes",
"phpstan": "phpstan analyse Classes --memory-limit 1G --level 8",
"phpunit": "phpunit -c Tests/UnitTests.xml"
}
}