-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
123 lines (123 loc) · 4.24 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "pagemachine/searchable",
"description": "Elasticsearch companion API for TYPO3",
"license": "GPL-3.0-or-later",
"type": "typo3-cms-extension",
"authors": [
{
"name": "Saskia Schreiber",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1",
"elasticsearch/elasticsearch": "^7.0",
"symfony/polyfill-php80": "^1.26",
"typo3/cms-backend": "^11.5 || ^12.4",
"typo3/cms-core": "^11.5 || ^12.4",
"typo3/cms-extbase": "^11.5 || ^12.4",
"typo3/cms-fluid": "^11.5 || ^12.4",
"typo3/cms-frontend": "^11.5 || ^12.4"
},
"require-dev": {
"dms/phpunit-arraysubset-asserts": "^0.5.0",
"ergebnis/composer-normalize": "^2.6",
"jangregor/phpstan-prophecy": "^1.0.0",
"php-parallel-lint/php-console-highlighter": "^1.0.0",
"php-parallel-lint/php-parallel-lint": "^1.2",
"phpspec/prophecy-phpunit": "^2.0",
"phpstan/extension-installer": "^1.3",
"phpstan/phpstan": "^1.0.0",
"phpunit/phpunit": "^9.0",
"psr/http-server-middleware": "^1.0",
"rector/rector": "^1.0",
"saschaegerer/phpstan-typo3": "^1.0.0",
"sclable/xml-lint": "^0.8.0",
"slevomat/coding-standard": "^8.0",
"squizlabs/php_codesniffer": "^3.0",
"ssch/typo3-rector": "^2.4",
"symfony/process": "^5.1",
"typo3/testing-framework": "^7.0"
},
"autoload": {
"psr-4": {
"PAGEmachine\\Searchable\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"PAGEmachine\\Searchable\\Tests\\": "Tests/",
"Pagemachine\\SearchableExtbaseL10nTest\\": "Tests/Functional/Fixtures/Extensions/extbase_l10n_test/Classes/",
"TYPO3\\CMS\\Core\\Tests\\": [
"web/typo3/sysext/core/Tests/",
"vendor/typo3/cms-core/Tests/"
]
},
"classmap": [
"Tests/StaticAnalysis/Stubs/CommandController.php"
]
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"ergebnis/composer-normalize": true,
"phpstan/extension-installer": true,
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
},
"preferred-install": {
"typo3/cms-core": "source"
},
"sort-packages": true
},
"extra": {
"typo3/cms": {
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"extension-key": "searchable",
"web-dir": "web"
}
},
"scripts": {
"build": [
"@composer require --no-progress --ansi --update-with-dependencies typo3/cms-core $TYPO3_VERSION",
"@lint",
"@test"
],
"composer:lint": [
"@composer validate --ansi",
"@composer normalize --no-update-lock --dry-run"
],
"deploy:ter": [
"@build:cleanup",
"@deploy:ter:setup",
"@deploy:ter:upload"
],
"deploy:ter:setup": [
"@composer global require typo3/tailor"
],
"deploy:ter:upload": [
"composer global exec -v -- tailor ter:publish --comment \"$(git tag -l --format='%(contents)' $TAG)\" $TAG"
],
"lint": [
"@composer:lint",
"@php:syntax:lint",
"@php:style:lint",
"@php:static:lint",
"@xml:lint",
"@php:rector:lint"
],
"php:functional:test": "phpunit --configuration phpunit-functional.xml --colors=always",
"php:rector:fix": "rector",
"php:rector:lint": "rector --dry-run --no-progress-bar",
"php:static:lint": "phpstan analyse --ansi --no-progress --configuration=phpstan.neon",
"php:style:fix": "phpcbf",
"php:style:lint": "phpcs",
"php:syntax:lint": "parallel-lint --show-deprecated --exclude bin --exclude vendor --exclude web .",
"php:unit:test": "phpunit --colors=always",
"test": [
"@php:unit:test",
"@php:functional:test"
],
"xml:lint": "xmllint --pattern '*.xlf,*.svg' Resources --ansi"
}
}