-
Notifications
You must be signed in to change notification settings - Fork 23
/
composer.json
87 lines (87 loc) · 2.04 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
{
"name": "akiraz2/yii2-blog",
"description": "Simple, configurable blog module for Yii2 (post, comment, nested category, tags). + frontend, backend. + SEO! (Opengraph, Schema.org)",
"type": "yii2-extension",
"keywords": [
"yii2",
"extension",
"blog",
"post",
"category",
"tag",
"comments",
"module",
"yii2-blog",
"seo"
],
"license": "MIT",
"authors": [
{
"name": "Akiraz",
"email": "[email protected]"
}
],
"require": {
"yiisoft/yii2": "*",
"yiidoc/yii2-redactor": "*",
"yii-dream-team/yii2-upload-behavior": "*",
"lesha724/yii2-math-captcha": "*",
"rmrevin/yii2-fontawesome": "~2.17"
},
"repositories": [
{
"type": "package",
"package": {
"name": "yii-dream-team/yii2-upload-behavior",
"type": "yii2-extension",
"description": "Yii2 file/image upload behavior for ActiveRecord",
"keywords": [
"file",
"image",
"upload",
"behavior",
"resize",
"thumb"
],
"license": "MIT",
"homepage": "http://yiidreamteam.com/yii2/upload-behavior",
"authors": [
{
"name": "Alexey Samoylov",
"email": "[email protected]",
"homepage": "http://yiidreamteam.com/team/alexey",
"role": "Developer"
}
],
"require": {
"php": ">=7.1.0",
"yiisoft/yii2": "*",
"masterexploder/phpthumb": "*"
},
"repositories": [
{
"type": "git",
"url": "https://github.com/yii-dream-team/PHPThumb"
}
],
"autoload": {
"psr-4": {
"yiidreamteam\\upload\\": "./src"
}
},
"version": "1.0.0",
"source": {
"type": "git",
"url": "https://github.com/akiraz2/yii2-upload-behavior",
"reference": "master"
}
}
}
],
"autoload": {
"psr-4": {
"akiraz2\\blog\\": ""
}
},
"extra": {}
}