-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
77 lines (77 loc) · 2.12 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
{
"name": "remind/headless-solr",
"description": "REMIND - Headless Solr",
"type": "typo3-cms-extension",
"keywords": [
"TYPO3",
"CMS",
"REMIND",
"solr",
"headless"
],
"license": [
"GPL-3.0-or-later"
],
"authors": [
{
"name": "REMIND GmbH",
"email": "[email protected]"
},
{
"name": "David Mellen",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Remind\\HeadlessSolr\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"Remind\\HeadlessSolr\\Tests\\": "Tests/"
}
},
"config": {
"optimize-autoloader": true,
"apcu-autoloader": true,
"sort-packages": true,
"allow-plugins": {
"typo3/cms-composer-installers": true,
"typo3/class-alias-loader": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true
}
},
"require": {
"apache-solr-for-typo3/solr": "^12",
"php": "^8.2",
"remind/headless": "^4.0 | dev-develop",
"typo3/cms-core": "^12.4"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^1.0",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan": "^1.12",
"remind/coding-standard": "^1.0",
"saschaegerer/phpstan-typo3": "^1.10",
"slevomat/coding-standard": "^8.15",
"squizlabs/php_codesniffer": "^3.10"
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"typo3/cms": {
"extension-key": "rmnd_headless_solr"
}
},
"scripts": {
"phpcs": "@php ./vendor/bin/phpcs --standard=phpcs.xml --extensions=php --report=full -n .",
"phpcbf": "@php ./vendor/bin/phpcbf --standard=phpcs.xml --extensions=php .",
"phpstan": "@php ./vendor/bin/phpstan analyse -c phpstan.neon",
"static-analysis": [
"@composer phpcs",
"@composer phpstan"
]
}
}