-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
77 lines (73 loc) · 1.98 KB
/
Copy pathcomposer.json
File metadata and controls
77 lines (73 loc) · 1.98 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
{
"name": "apache-solr-for-typo3/php-solr-explain",
"description": "PHP explain library for apache solr",
"license": "MIT",
"authors": [
{
"name": "Timo Hund",
"email": "timo.hund@dkd.de"
},
{
"name": "Michael Klapper",
"email": "michael.klapper@aoemedia.de"
}
],
"require": {
"php": "^8.2",
"ext-dom": "*"
},
"require-dev": {
"phpunit/phpunit": "^11.3.1",
"phpstan/phpstan": "^2.1.6",
"phpstan/phpstan-phpunit": "^2.0.4",
"rector/rector": "^2.0",
"typo3/coding-standards": "v0.8.0"
},
"autoload": {
"psr-4": {
"ApacheSolrForTypo3\\SolrExplain\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"ApacheSolrForTypo3\\SolrExplain\\Tests\\": "Tests/"
}
},
"config": {
"optimize-autoloader": true,
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin"
},
"scripts-descriptions": {
"build:phar": "Builds php-solr-explain.phar file from this library.",
"tests:setup": "Installs composer dependencies, requiered for tests.",
"t3:standards:fix": "Checks the coding standards on this lib",
"tests:phpstan": "Runs PHPStan analys on this library.",
"tests:rector": "Fixes/refactors the code from this library with rector",
"tests:rector-check": "Checks if something can be refatored with rector on this library",
"tests:unit": "Runs unit tests"
},
"scripts": {
"build:phar": [
"./Build/phar.sh"
],
"tests:setup": [
"@composer install"
],
"t3:standards:fix": [
"php-cs-fixer fix"
],
"tests:phpstan": [
"phpstan analyze -c Build/Test/phpstan.neon"
],
"tests:rector": [
"rector process --config=rector.php --autoload-file=.Build/vendor/autoload.php --clear-cache"
],
"tests:rector-check": [
"rector process --config=rector.php --autoload-file=.Build/vendor/autoload.php --clear-cache --dry-run"
],
"tests:unit": [
"phpunit --config Build/Test/phpunit.xml --colors"
]
}
}