forked from craftcms/cms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
96 lines (96 loc) · 3.05 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
88
89
90
91
92
93
94
95
96
{
"name": "craftcms/cms",
"description": "Craft CMS",
"version": "3.5.11.1",
"keywords": [
"cms",
"craftcms",
"yii2"
],
"homepage": "https://craftcms.com",
"license": "proprietary",
"support": {
"email": "[email protected]",
"issues": "https://github.com/craftcms/cms/issues?state=open",
"forum": "https://craftcms.stackexchange.com/",
"source": "https://github.com/craftcms/cms",
"docs": "https://craftcms.com/docs/3.x/",
"rss": "https://github.com/craftcms/cms/releases.atom"
},
"require": {
"php": ">=7.0.0",
"ext-curl": "*",
"ext-dom": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-openssl": "*",
"ext-pcre": "*",
"ext-pdo": "*",
"ext-zip": "*",
"composer/composer": "1.10.10",
"craftcms/oauth2-craftid": "~1.0.0",
"craftcms/plugin-installer": "~1.5.3",
"craftcms/server-check": "~1.1.0",
"creocoder/yii2-nested-sets": "~0.9.0",
"elvanto/litemoji": "^1.3.1",
"enshrined/svg-sanitize": "~0.13.2",
"guzzlehttp/guzzle": ">=6.3.0 <6.5.0 || ^6.5.1",
"league/flysystem": "^1.0.35",
"league/oauth2-client": "^2.2.1",
"mikehaertl/php-shellcommand": "^1.2.5",
"mrclay/jsmin-php": "^2.4",
"mrclay/minify": "^3.0.7",
"pixelandtonic/imagine": "~1.2.2.1",
"sebastian/diff": "^2.0 || ^3.0 || ^4.0",
"seld/cli-prompt": "^1.0.3",
"symfony/yaml": "^3.2|^4.0",
"true/punycode": "^2.1.0",
"twig/twig": "~2.12.5 || ~2.13.1",
"voku/portable-utf8": "^5.4.28",
"voku/stringy": "^6.2.2",
"webonyx/graphql-php": "^0.12.0",
"yii2tech/ar-softdelete": "^1.0.2",
"yiisoft/yii2": "~2.0.38.0",
"yiisoft/yii2-debug": "^2.1.0",
"yiisoft/yii2-queue": "~2.3.0",
"yiisoft/yii2-swiftmailer": "^2.1.0",
"laminas/laminas-feed": "^2.12.0"
},
"require-dev": {
"codeception/codeception": "^4.0.0",
"vlucas/phpdotenv": "^3.0",
"league/factory-muffin": "^3.0",
"fzaninotto/faker": "^1.8",
"codeception/module-phpbrowser": "^1.0.0",
"codeception/module-asserts": "^1.0.0",
"codeception/module-rest": "^1.0.0",
"codeception/module-datafactory": "^1.0.0",
"codeception/module-yii2": "^1.0.0"
},
"provide": {
"bower-asset/inputmask": "~3.2.2 | ~3.3.5",
"bower-asset/jquery": "3.5.*@stable | 3.4.*@stable | 3.3.*@stable | 3.2.*@stable | 3.1.*@stable | 2.2.*@stable | 2.1.*@stable | 1.11.*@stable | 1.12.*@stable",
"bower-asset/punycode": "1.3.*",
"bower-asset/yii2-pjax": "~2.0.1"
},
"conflict": {
"league/oauth2-client": "2.4.0"
},
"suggest": {
"ext-imagick": "Adds support for more image processing formats and options.",
"ext-iconv": "Adds support for more character encodings than PHP’s built-in mb_convert_encoding() function, which Craft will take advantage of when converting strings to UTF-8.",
"ext-intl": "Adds rich internationalization support."
},
"autoload": {
"psr-4": {
"craft\\": "src/",
"crafttests\\fixtures\\": "tests/fixtures/"
}
},
"config": {
"sort-packages": true,
"platform": {
"php": "7.1.30"
}
}
}