forked from craftcms/cms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
120 lines (120 loc) · 3.57 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "craftcms/cms",
"description": "Craft CMS",
"keywords": [
"cms",
"craftcms",
"yii2"
],
"homepage": "https://craftcms.com",
"license": "proprietary",
"authors": [
{
"name": "Pixel & Tonic",
"homepage": "https://pixelandtonic.com/"
}
],
"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/4.x/",
"rss": "https://github.com/craftcms/cms/releases.atom"
},
"require": {
"php": "^8.0.2",
"ext-bcmath": "*",
"ext-curl": "*",
"ext-dom": "*",
"ext-intl": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-openssl": "*",
"ext-pcre": "*",
"ext-pdo": "*",
"ext-zip": "*",
"commerceguys/addressing": "^1.2",
"composer/composer": "^2.2.19",
"craftcms/plugin-installer": "~1.6.0",
"craftcms/server-check": "~2.1.2",
"creocoder/yii2-nested-sets": "~0.9.0",
"elvanto/litemoji": "~4.3.0",
"enshrined/svg-sanitize": "~0.16.0",
"guzzlehttp/guzzle": "^7.2.0",
"illuminate/collections": "^9.1.0",
"mikehaertl/php-shellcommand": "^1.6.3",
"moneyphp/money": "^4.0",
"monolog/monolog": "^2.3",
"pixelandtonic/imagine": "~1.3.3.1",
"samdark/yii2-psr-log-target": "^1.1.3",
"seld/cli-prompt": "^1.0.4",
"symfony/http-client": "^6.0.3",
"symfony/var-dumper": "^5.0|^6.0",
"symfony/yaml": "^5.2.3",
"theiconic/name-parser": "^1.2",
"twig/twig": "~3.4.3",
"voku/stringy": "^6.4.0",
"webonyx/graphql-php": "~14.11.5",
"yiisoft/yii2": "~2.0.48.1",
"yiisoft/yii2-debug": "~2.1.22.0",
"yiisoft/yii2-queue": "~2.3.2",
"yiisoft/yii2-symfonymailer": "^2.0.0"
},
"require-dev": {
"codeception/codeception": "^4.1.29",
"codeception/module-asserts": "^1.3.1",
"codeception/module-datafactory": "^1.1.0",
"codeception/module-phpbrowser": "^1.0.2",
"codeception/module-rest": "^1.4.2",
"codeception/module-yii2": "^1.1.5",
"craftcms/ecs": "dev-main",
"fakerphp/faker": "^1.19.0",
"league/factory-muffin": "^3.3.0",
"phpstan/phpstan": "^1.8.5",
"vlucas/phpdotenv": "^5.4.1",
"yiisoft/yii2-redis": "^2.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",
"yii2tech/ar-softdelete": "1.0.4"
},
"conflict": {
"webonyx/graphql-php": "14.11.7"
},
"suggest": {
"ext-exif": "Adds support for parsing image EXIF data.",
"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."
},
"autoload": {
"psr-4": {
"craft\\": "src/",
"yii2tech\\ar\\softdelete\\": "lib/ar-softdelete/src/"
}
},
"autoload-dev": {
"psr-4": {
"crafttests\\": "tests/"
}
},
"scripts": {
"check-cs": "ecs check --ansi",
"fix-cs": "ecs check --ansi --fix",
"codecept-build": "codecept build",
"phpstan": "phpstan --memory-limit=1G"
},
"config": {
"sort-packages": true,
"platform": {
"php": "8.0.2"
},
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
}
}
}