-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
112 lines (112 loc) · 3.2 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
{
"name": "vysokeskoly/solr-feeder",
"description": "Data feeder for SOLR",
"license": "MIT",
"type": "project",
"version": "2.1.0",
"authors": [
{
"name": "Petr Chromec",
"email": "mortal_flesh@seznam.cz"
}
],
"require": {
"php": "^8.1",
"ext-json": "*",
"ext-libxml": "*",
"ext-simplexml": "*",
"beberlei/assert": "^3.3",
"consolidation/robo": "^3.0",
"guzzlehttp/guzzle": "^7.4",
"lstrojny/functional-php": "^1.6",
"mf/collections-php": "^7.0",
"solarium/solarium": "^6.1",
"symfony/config": "^6.0",
"symfony/console": "^6.0",
"symfony/event-dispatcher": "^6.0",
"symfony/filesystem": "^6.0",
"symfony/process": "^6.0",
"symfony/yaml": "^6.0",
"vysokeskoly/deb-build": "^7.0"
},
"require-dev": {
"ext-pdo": "*",
"ergebnis/composer-normalize": "^2.28",
"mockery/mockery": "^1.4",
"php-parallel-lint/php-parallel-lint": "^1.3",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan": "^1.2",
"phpstan/phpstan-beberlei-assert": "^1.0",
"phpstan/phpstan-phpunit": "^1.0",
"phpunit/phpunit": "^9.5.20"
},
"autoload": {
"psr-4": {
"VysokeSkoly\\SolrFeeder\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"VysokeSkoly\\SolrFeeder\\Tests\\": "tests/"
}
},
"bin": [
"bin/solr-feeder-console"
],
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"phpstan/extension-installer": true
},
"bin-dir": "bin",
"platform": {
"php": "8.1.8"
},
"secure-http": false,
"sort-packages": true
},
"extra": {
"symfony-bin-dir": "bin",
"symfony-tests-dir": "tests"
},
"scripts": {
"post-install-cmd": [
"@installTools"
],
"post-update-cmd": [
"@updateTools"
],
"all": [
"@analyze",
"@phpstan",
"@test"
],
"analyze": [
"@cs",
"@lint"
],
"cs": [
"bin/ecs check --ansi -- src/ tests/"
],
"fix": [
"@composer normalize",
"bin/ecs check --ansi --clear-cache --fix -- src/ tests/"
],
"installTools": [
"cd tools/coding-standards && composer install && composer link",
"cd tools/pre-build && composer install && composer link"
],
"lint": [
"@composer validate",
"@composer normalize --dry-run",
"bin/parallel-lint -j 10 -e php ./src ./tests ecs.php"
],
"phpstan": "bin/phpstan analyze -l 8 -c phpstan.neon src tests",
"test": "bin/phpunit -c phpunit.xml.dist",
"test-ci": "mkdir -p code-coverage && php -dxdebug.coverage_enable=1 bin/phpunit -c phpunit.xml.dist",
"updateTools": [
"cd tools/coding-standards && composer update && composer link",
"cd tools/pre-build && composer update && composer link"
]
}
}