-
Notifications
You must be signed in to change notification settings - Fork 26
/
composer.json
63 lines (63 loc) · 1.82 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
{
"name": "kocsismate/di-container-benchmarks",
"description": "Benchmarks of some popular PHP DI Containers",
"license": "MIT",
"homepage": "https://github.com/kocsismate/php-di-benchmarks",
"keywords": ["Dependency Injection Container benchmarks", "Dependency Injection Container performance", "DI"],
"authors": [
{
"name": "Máté Kocsis",
"email": "kocsismate@woohoolabs.com"
}
],
"require": {
"php": "^7.4||^8.0",
"ext-curl": "*",
"ext-json": "*",
"composer-runtime-api": "^2.0",
"aura/di": "^4.0.0",
"chubbyphp/chubbyphp-container": "^2.0.0",
"doctrine/cache": "^1.6.1",
"illuminate/container": "^8.17.0",
"joomla/di": "^2.0.x-dev",
"laminas/laminas-servicemanager": "^3.5.0",
"level-2/dice": "^4.0.1",
"php-di/php-di": "^6.3.0",
"psr/container": "^1.0.0",
"symfony/config": "^5.1",
"symfony/dependency-injection": "^5.1.0",
"woohoolabs/zen": "^3.0.0",
"yiisoft/yii2": "^2.0.31"
},
"require-dev": {
"phpstan/phpstan": "^0.12.0",
"phpstan/phpstan-strict-rules": "^0.12.0",
"squizlabs/php_codesniffer": "^3.5.6",
"woohoolabs/coding-standard": "^2.3.0"
},
"autoload": {
"psr-4": {
"DiContainerBenchmarks\\": "src/"
}
},
"scripts": {
"test": "phpunit",
"phpstan": "phpstan analyse",
"phpcs": "phpcs",
"phpcbf": "phpcbf"
},
"config": {
"bin-compat": "full",
"platform": {
"php": "8.0.0"
},
"platform-check": false,
"sort-packages": true
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
]
}