-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
53 lines (52 loc) · 1.34 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
{
"name": "yii2-extensions/extensions",
"type": "library",
"description": "Tests for extensions Yii2 branch 2.2.",
"license": "mit",
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=8.1",
"oomphinc/composer-installers-extender": "^2.0",
"yii2-extensions/queue": "dev-main",
"yiisoft/yii2": "^2.2",
"yiisoft/yii2-bootstrap5":"^2.0",
"yiisoft/yii2-faker":"^2.0",
"yii2-extensions/imagine":"dev-main"
},
"require-dev": {
"phpunit/phpunit": "^10.2"
},
"autoload": {
"psr-4": {
"yii\\template\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"yii\\template\\tests\\": "tests"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
},
"installer-types": ["bower-asset", "npm-asset"],
"installer-paths": {
"./node_modules/{$name}/": ["type:bower-asset", "type:npm-asset"]
}
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"config": {
"allow-plugins": {
"composer/installers": true,
"yiisoft/yii2-composer": true,
"oomphinc/composer-installers-extender": true
}
}
}