-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
63 lines (63 loc) · 1.84 KB
/
composer.json
File metadata and controls
63 lines (63 loc) · 1.84 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
{
"name": "netresearch/pipeline-factory",
"description": "This Symfony bundle allows dynamically creating pipelines through dependency injection via league/pipeline",
"type": "symfony-bundle",
"license": "MIT",
"keywords": [
"pipeline",
"league",
"symfony",
"bundle"
],
"homepage": "https://www.netresearch.de/",
"autoload": {
"psr-4": {
"Netresearch\\PipelineFactoryBundle\\": "src/"
}
},
"authors": [
{
"name": "Netresearch DTT GmbH",
"email": "plugins@netresearch.de",
"role": "Manufacturer",
"homepage": "https://www.netresearch.de/"
}
],
"require": {
"php": ">=8.2",
"league/pipeline": "^1.0",
"symfony/dependency-injection": "^5.4|^6.4|^7.3|^8.0",
"symfony/config": "^5.4|^6.4|^7.3|^8.0",
"symfony/http-kernel": "^5.4|^6.4|^7.3|^8.0"
},
"require-dev": {
"phpstan/phpstan": "^2.0",
"phpstan/phpstan-symfony": "^2.0",
"phpstan/extension-installer": "^1.2",
"rector/rector": "^2.0",
"squizlabs/php_codesniffer": "~4.0.0",
"phpunit/phpunit": "^11.0"
},
"scripts": {
"phpcs": "phpcs --standard=PSR12 src",
"phpcbf": "phpcbf --standard=PSR12 src",
"rector": "rector",
"phpstan": "phpstan analyze --level 7 -a vendor/autoload.php src",
"test": "phpunit",
"test-coverage": "phpunit --coverage-html coverage --coverage-text",
"analysis": [
"@phpcs",
"@rector --dry-run --no-progress-bar",
"@phpstan --no-progress"
],
"quality": [
"@analysis",
"@test"
]
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
}
}
}