-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
75 lines (75 loc) · 1.95 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
{
"name": "yii-extension/simple-view-bulma",
"type": "library",
"description": "Simple view bulma for web application yii.",
"keywords": [
"yii",
"simple",
"view",
"bulma",
"web application"
],
"license": "BSD-3-Clause",
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=8.0",
"yii-extension/alert-flash-bulma": "^1.0",
"yii-extension/bulma": "^1.0",
"yii-extension/fontawesome": "^1.0",
"yiisoft/assets": "^2.0",
"yiisoft/form": "dev-enhacements-factory as 1.0",
"yiisoft/translator-formatter-intl": "^1.0",
"yiisoft/translator-message-php": "^1.0",
"yiisoft/user": "^1.0",
"yiisoft/yii-event": "^1.0",
"yiisoft/yii-view": "^4.0"
},
"require-dev": {
"codeception/c3": "^2.6",
"codeception/codeception": "^4.1",
"codeception/module-asserts": "^2.0",
"codeception/module-phpbrowser": "^2.0",
"vimeo/psalm": "^4.7",
"yii-extension/simple-app": "^1.0"
},
"autoload": {
"psr-4": {
"Simple\\View\\Bulma\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Simple\\View\\Bulma\\Tests\\": "tests"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
},
"config-plugin-options": {
"source-directory": "config"
},
"config-plugin": {
"params": "params.php",
"common": [
"common/*.php"
],
"routes": "routes.php"
},
"config-plugin-environments": {
"tests": {
"params": "tests/params.php"
}
}
},
"config": {
"sort-packages": true
},
"repositories": [
{
"type": "github",
"url": "https://github.com/terabytesoftw/yii-form"
}
]
}