-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
85 lines (85 loc) · 2.71 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
{
"name": "reinfi/zf-dependency-injection",
"type": "library",
"description": "A Laminas Framework module for loading dependencies via annotation or config entries.",
"keywords": [
"zend",
"dependency",
"injection",
"annotation",
"yaml",
"autowiring"
],
"license": "MIT",
"authors": [
{
"name": "Reinfi"
}
],
"bin": [
"bin/zf-dependency-injection-cache-warmup"
],
"require": {
"php": "~8.1.0 || ~8.2.0 || ~8.3.0",
"laminas/laminas-servicemanager": "^2.7 | ^3.0",
"laminas/laminas-modulemanager": "^2.7",
"psr/simple-cache": "^1.0 | ^2.0 | ^3.0"
},
"autoload": {
"psr-4": {
"Reinfi\\DependencyInjection\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Reinfi\\DependencyInjection\\Test\\": "test/"
}
},
"suggest": {
"doctrine/annotations": "To use annotation injections",
"symfony/console": "To use console warmup command script",
"symfony/yaml": "To use the yaml dependency definition"
},
"require-dev": {
"laminas/laminas-config-aggregator": "^1.0",
"laminas/laminas-mvc": "^2.7 | ^3.0",
"laminas/laminas-view": "^2.6",
"laminas/laminas-serializer": "^2.6",
"laminas/laminas-log": "^2.9",
"laminas/laminas-i18n": "^2.7",
"phpunit/phpunit": "^10.0",
"doctrine/orm": "^2.5",
"php-coveralls/php-coveralls": "^2.0",
"symfony/yaml": "^6.0 | ^7.0",
"phpstan/phpstan": "^1.3",
"phpspec/prophecy-phpunit": "^2.0",
"laminas/laminas-hydrator": "^4.2",
"laminas/laminas-validator": "^2.14",
"laminas/laminas-filter": "^2.11",
"laminas/laminas-form": "^3.0",
"laminas/laminas-inputfilter": "^2.12",
"bnf/phpstan-psr-container": "^1.0",
"symplify/easy-coding-standard": "^12.0",
"doctrine/annotations": "^2.0",
"laminas/laminas-translator": "^1.0"
},
"extra": {
"zf": {
"component": "Reinfi\\DependencyInjection",
"config-provider": "Reinfi\\DependencyInjection\\ConfigProvider"
},
"phpstan": {
"includes": [
"phpstan-extension.neon"
]
}
},
"scripts": {
"cs-check": "ecs check",
"cs-fix": "ecs check --fix",
"phpstan": "./vendor/bin/phpstan analyse -c phpstan.neon",
"test": "vendor/bin/phpunit --no-coverage",
"test-with-coverage": "vendor/bin/phpunit --coverage-clover=build/coverage.xml",
"infection": "infection --test-framework-options=\" --exclude-group integration\" --threads=4"
}
}