-
-
Notifications
You must be signed in to change notification settings - Fork 59
/
composer.json
91 lines (91 loc) · 2.86 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
{
"name": "laminas/laminas-servicemanager",
"description": "Factory-Driven Dependency Injection Container",
"license": "BSD-3-Clause",
"keywords": [
"laminas",
"di",
"dic",
"dependency-injection",
"psr-11",
"servicemanager",
"service-manager"
],
"homepage": "https://laminas.dev",
"support": {
"issues": "https://github.com/laminas/laminas-servicemanager/issues",
"chat": "https://laminas.dev/chat",
"forum": "https://discourse.laminas.dev"
},
"config": {
"platform": {
"php": "8.1.99"
},
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"composer/package-versions-deprecated": true
}
},
"require": {
"php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0",
"brick/varexporter": "^0.3.8 || ^0.4.0 || ^0.5.0",
"laminas/laminas-stdlib": "^3.19",
"psr/container": "^1.1 || ^2.0"
},
"extra": {
"laminas": {
"config-provider": "Laminas\\ServiceManager\\ConfigProvider",
"module": "Laminas\\ServiceManager"
}
},
"require-dev": {
"boesing/psalm-plugin-stringf": "^1.4",
"composer/package-versions-deprecated": "^1.11.99.5",
"friendsofphp/proxy-manager-lts": "^1.0.18",
"laminas/laminas-cli": "^1.8",
"laminas/laminas-coding-standard": "~3.0.0",
"laminas/laminas-container-config-test": "^1.0",
"lctrs/psalm-psr-container-plugin": "^1.9",
"mikey179/vfsstream": "^1.6.12",
"phpbench/phpbench": "^1.3.1",
"phpunit/phpunit": "^10.5.36",
"psalm/plugin-phpunit": "^0.19.0",
"symfony/console": "^6.0",
"vimeo/psalm": "^5.26.1"
},
"provide": {
"psr/container-implementation": "^1.0 || ^2.0"
},
"conflict": {
"laminas/laminas-code": "<4.10.0",
"zendframework/zend-code": "<3.3.1"
},
"suggest": {
"laminas/laminas-cli": "To consume CLI commands provided by this component",
"friendsofphp/proxy-manager-lts": "To handle lazy initialization of services"
},
"autoload": {
"psr-4": {
"Laminas\\ServiceManager\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"LaminasTest\\ServiceManager\\": "test/",
"LaminasBench\\ServiceManager\\": "benchmarks/"
}
},
"scripts": {
"benchmark": "phpbench run --revs=2 --iterations=2 --report=aggregate",
"check": [
"@cs-check",
"@test"
],
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"static-analysis": "psalm --shepherd --stats",
"test": "phpunit --colors=always",
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml"
}
}