forked from pagemachine/searchable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
99 lines (99 loc) · 3.44 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
{
"name": "pagemachine/searchable",
"description": "Elasticsearch companion API for TYPO3",
"license": "GPL-3.0-or-later",
"type": "typo3-cms-extension",
"authors": [
{
"name": "Saskia Schreiber",
"email": "sschreiber@pagemachine.de"
}
],
"require": {
"php": "^7.4",
"elasticsearch/elasticsearch": "~5.0 || ~7.0",
"typo3/cms-backend": "^10.4 || ^11.5",
"typo3/cms-core": "^10.4 || ^11.5",
"typo3/cms-extbase": "^10.4 || ^11.5",
"typo3/cms-fluid": "^10.4 || ^11.5",
"typo3/cms-frontend": "^10.4 || ^11.5"
},
"require-dev": {
"codedungeon/phpunit-result-printer": "^0.32.0",
"dms/phpunit-arraysubset-asserts": "^0.4.0",
"ergebnis/composer-normalize": "^2.6",
"jangregor/phpstan-prophecy": "^1.0.0",
"nimut/testing-framework": "^6.0",
"php-parallel-lint/php-console-highlighter": "^1.0.0",
"php-parallel-lint/php-parallel-lint": "^1.2",
"phpspec/prophecy-phpunit": "^2.0",
"phpstan/phpstan": "^1.0.0",
"phpunit/phpunit": "^9.0",
"psr/http-server-middleware": "^1.0",
"saschaegerer/phpstan-typo3": "^1.0.0",
"sclable/xml-lint": "^0.5.0",
"slevomat/coding-standard": "^8.0",
"squizlabs/php_codesniffer": "^3.0",
"symfony/process": "^5.1"
},
"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\\": "vendor/typo3/cms/typo3/sysext/core/Tests/"
},
"classmap": [
"Tests/StaticAnalysis/Stubs/CommandController.php"
]
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"ergebnis/composer-normalize": true,
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
},
"sort-packages": true
},
"extra": {
"typo3/cms": {
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"extension-key": "searchable",
"web-dir": "web"
}
},
"scripts": {
"post-autoload-dump": [
"Nimut\\TestingFramework\\Composer\\ExtensionTestEnvironment::prepare"
],
"analyze:php": "phpstan analyse --ansi --no-progress --configuration=phpstan.neon",
"build": [
"@composer require --no-progress --ansi --update-with-dependencies typo3/cms-core $TYPO3_VERSION",
"@composer validate --ansi",
"@composer normalize --no-update-lock --dry-run",
"@lint",
"@test"
],
"fix:style": "phpcbf",
"lint": [
"@lint:php",
"@lint:style",
"@analyze:php",
"@lint:xml"
],
"lint:php": "parallel-lint --exclude bin --exclude vendor --exclude web .",
"lint:style": "phpcs",
"lint:xml": "xmllint --pattern '*.xlf,*.svg' Resources --ansi",
"test": [
"@test:unit",
"@test:functional"
],
"test:functional": "phpunit --configuration phpunit-functional.xml --colors=always",
"test:unit": "phpunit --colors=always"
}
}