generated from yii2-extensions/template
-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
90 lines (90 loc) · 3.4 KB
/
composer.json
File metadata and controls
90 lines (90 loc) · 3.4 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
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
{
"name": "yii2-extensions/psr-bridge",
"type": "library",
"description": "PSR-7 bridge for Yii2 with worker mode support",
"keywords": [
"yii2-extension",
"yii2",
"psr-bridge",
"psr-7",
"psr-17",
"psr-http-factory",
"psr-http-message",
"psr-http-server-handler",
"frankenphp",
"roadrunner",
"worker-mode"
],
"license": "BSD-3-Clause",
"require": {
"php": ">=8.1",
"ext-filter": "*",
"ext-mbstring": "*",
"psr/http-factory": "^1.1",
"psr/http-message": "^2.0",
"psr/http-server-handler": "^1.0",
"yiisoft/yii2": "^2.0.54|^22"
},
"require-dev": {
"httpsoft/http-message": "^1.1",
"infection/infection": "^0.27|^0.32",
"maglnet/composer-require-checker": "^4.1",
"php-forge/coding-standard": "^0.1",
"php-forge/support": "^0.3",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan-strict-rules": "^2.0.3",
"phpunit/phpunit": "^10.5",
"xepozz/internal-mocker": "^1.4",
"yii2-extensions/phpstan": "^0.4"
},
"suggest": {
"yii2-extensions/worker-debug": "Provides Yii debug integration for PSR requests"
},
"autoload": {
"psr-4": {
"yii2\\extensions\\psrbridge\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"yii2\\extensions\\psrbridge\\tests\\": "tests"
}
},
"extra": {
"branch-alias": {
"dev-main": "0.4.x-dev"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"infection/extension-installer": true,
"phpstan/extension-installer": true,
"yiisoft/yii2-composer": true
}
},
"scripts": {
"check-dependencies": "./vendor/bin/composer-require-checker check",
"ecs": "./vendor/bin/ecs --fix",
"mutation": "./vendor/bin/infection --threads=4 --ignore-msi-with-no-mutations --min-msi=100 --min-covered-msi=100",
"mutation-static": "./vendor/bin/infection --threads=4 --ignore-msi-with-no-mutations --min-msi=100 --min-covered-msi=100 --static-analysis-tool=phpstan --static-analysis-tool-options='--memory-limit=-1'",
"rector": "./vendor/bin/rector process",
"static": "./vendor/bin/phpstan --memory-limit=-1",
"sync-metadata": [
"curl -fsSL -o .editorconfig https://raw.githubusercontent.com/yii2-extensions/template/main/.editorconfig",
"curl -fsSL -o .gitattributes https://raw.githubusercontent.com/yii2-extensions/template/main/.gitattributes",
"curl -fsSL -o .gitignore https://raw.githubusercontent.com/yii2-extensions/template/main/.gitignore",
"curl -fsSL -o .styleci.yml https://raw.githubusercontent.com/yii2-extensions/template/main/.styleci.yml",
"curl -fsSL -o infection.json5 https://raw.githubusercontent.com/yii2-extensions/template/main/infection.json5",
"curl -fsSL -o phpstan.neon https://raw.githubusercontent.com/yii2-extensions/template/main/phpstan.neon",
"curl -fsSL -o phpunit.xml.dist https://raw.githubusercontent.com/yii2-extensions/template/main/phpunit.xml.dist"
],
"tests": "./vendor/bin/phpunit"
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
]
}