-
Notifications
You must be signed in to change notification settings - Fork 635
/
composer.json
133 lines (133 loc) · 3.96 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
121
122
123
124
125
126
127
128
129
130
131
132
133
{
"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/5.x/",
"rss": "https://github.com/craftcms/cms/releases.atom"
},
"require": {
"php": "^8.2",
"ext-bcmath": "*",
"ext-curl": "*",
"ext-dom": "*",
"ext-intl": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-openssl": "*",
"ext-pcre": "*",
"ext-pdo": "*",
"ext-zip": "*",
"bacon/bacon-qr-code": "^2.0",
"commerceguys/addressing": "^2.1.1",
"composer/semver": "^3.3.2",
"craftcms/plugin-installer": "~1.6.0",
"craftcms/server-check": "~5.0.1",
"creocoder/yii2-nested-sets": "~0.9.0",
"elvanto/litemoji": "~4.3.0",
"enshrined/svg-sanitize": "~0.19.0",
"guzzlehttp/guzzle": "^7.2.0",
"illuminate/collections": "^v10.42.0",
"league/uri": "^7.0",
"mikehaertl/php-shellcommand": "^1.6.3",
"moneyphp/money": "^4.0",
"monolog/monolog": "^3.0",
"phpdocumentor/reflection-docblock": "^5.3",
"pixelandtonic/imagine": "~1.3.3.1",
"pragmarx/google2fa": "^8.0",
"pragmarx/recovery": "^0.2.1",
"samdark/yii2-psr-log-target": "^1.1.3",
"seld/cli-prompt": "^1.0.4",
"symfony/filesystem": "^6.3",
"symfony/http-client": "^6.0.3",
"symfony/property-access": "^7.0",
"symfony/property-info": "^7.0",
"symfony/serializer": "^6.4",
"symfony/var-dumper": "^5.0|^6.0",
"symfony/yaml": "^5.2.3",
"theiconic/name-parser": "^1.2",
"twig/twig": "~3.14.0",
"voku/stringy": "^6.4.0",
"web-auth/webauthn-lib": "~4.9.0",
"webonyx/graphql-php": "~14.11.5",
"yiisoft/yii2": "~2.0.51.0",
"yiisoft/yii2-debug": "~2.1.25.0",
"yiisoft/yii2-queue": "~2.3.2",
"yiisoft/yii2-symfonymailer": "^4.0.0"
},
"require-dev": {
"codeception/codeception": "^5.0.11",
"codeception/module-asserts": "^3.0.0",
"codeception/module-datafactory": "^3.0.0",
"codeception/module-phpbrowser": "^3.0.0",
"codeception/module-rest": "^3.3.2",
"codeception/module-yii2": "^1.1.9",
"codeception/lib-innerbrowser": "4.0.1",
"craftcms/ecs": "dev-main",
"fakerphp/faker": "^1.19.0",
"league/factory-muffin": "^3.3.0",
"phpstan/phpstan": "^1.10.56",
"vlucas/phpdotenv": "^5.4.1",
"yiisoft/yii2-redis": "^2.0"
},
"provide": {
"bower-asset/inputmask": "5.0.9",
"bower-asset/jquery": "3.6.1",
"bower-asset/punycode": "2.3.1",
"bower-asset/yii2-pjax": "2.0.8",
"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": {
"copy-icons": "php ./scripts/copyicons.php && ecs check src/icons/index.php --fix",
"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.2"
},
"platform-check": false,
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
}
}
}