-
-
Notifications
You must be signed in to change notification settings - Fork 529
/
composer.json
133 lines (133 loc) · 4.71 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": "modx/revolution",
"description": "MODX Revolution is a Content Management System",
"type": "project",
"keywords": [
"content",
"CMS",
"routing",
"templating"
],
"homepage": "https://modx.com/",
"license": "GPL-2.0+",
"authors": [
{
"name": "Jason Coward",
"email": "[email protected]",
"homepage": "http://jasoncoward.com/",
"role": "Developer"
},
{
"name": "Shaun McCormick",
"email": "[email protected]",
"homepage": "http://splittingred.com/",
"role": "Developer"
},
{
"name": "Jan Peca",
"email": "[email protected]",
"homepage": "http://www.bxr.cz/",
"role": "Developer"
}
],
"support": {
"docs": "https://docs.modx.com/3.x/en/index",
"email": "[email protected]",
"forum": "https://forums.modx.com/",
"irc": "irc://irc.freenode.org/modx",
"chat": "https://modx.org/",
"issues": "https://github.com/modxcms/revolution/issues/",
"source": "https://github.com/modxcms/revolution/"
},
"funding": [
{
"type": "opencollective",
"url": "https://opencollective.com/modx"
}
],
"config": {
"vendor-dir": "core/vendor"
},
"require": {
"php": ">=7.4.0",
"xpdo/xpdo": "~3.1.0",
"league/flysystem": "^2.0",
"league/flysystem-aws-s3-v3": "^2.0",
"league/flysystem-ftp": "^2.0",
"phpmailer/phpmailer": "^6.0",
"smarty/smarty": "^4.0",
"james-heinrich/phpthumb": "^1.7",
"erusev/parsedown": "^1.7",
"inlinestyle/inlinestyle": "^1.2",
"simplepie/simplepie": "^1.5",
"pimple/pimple": "^3.0",
"psr/http-client": "^1.0",
"psr/http-message": "^1.0",
"psr/http-factory": "^1.0",
"guzzlehttp/guzzle": "^7.3",
"guzzlehttp/psr7": "^2.0",
"ext-curl": "*",
"ext-dom": "*",
"ext-gd": "*",
"ext-zlib": "*",
"ext-json": "*",
"ext-simplexml": "*",
"ext-pdo": "*",
"ext-xml": "*",
"ext-zip": "*",
"ext-xmlwriter": "*",
"ext-fileinfo": "*"
},
"suggest": {
"ext-imagick": "To process images in a more advanced way",
"ext-iconv": "Needed if you want to use the built-in transliteration service",
"ext-mbstring": "Needed when use_multibyte is enabled or when using some extras like Gallery",
"ext-xmlwriter": "To use the export functionalities",
"ext-intl": ""
},
"autoload": {
"psr-4": {
"MODX\\": "core/src/"
}
},
"autoload-dev": {
"psr-4": {
"MODX\\Revolution\\": "_build/test/"
}
},
"scripts": {
"post-create-project-cmd": [
"@php -r \"file_exists('_build/build.properties.php') || copy('_build/build.properties.sample.php', '_build/build.properties.php');\"",
"@php -r \"file_exists('_build/build.config.php') || copy('_build/build.config.sample.php', '_build/build.config.php');\"",
"@php _build/transport.core.php"
],
"phpunit": "phpunit -c _build/test/phpunit.xml --coverage-text --colors",
"parse-schema-mysql": [
"core/vendor/bin/xpdo parse-schema --config=core/model/schema/config.php --update=1 --psr4=MODX\\\\ mysql core/model/schema/modx.mysql.schema.xml core/src/",
"core/vendor/bin/xpdo parse-schema --config=core/model/schema/config.php --update=1 --psr4=MODX\\\\ mysql core/model/schema/modx.registry.db.mysql.schema.xml core/src/",
"core/vendor/bin/xpdo parse-schema --config=core/model/schema/config.php --update=1 --psr4=MODX\\\\ mysql core/model/schema/modx.sources.mysql.schema.xml core/src/",
"core/vendor/bin/xpdo parse-schema --config=core/model/schema/config.php --update=1 --psr4=MODX\\\\ mysql core/model/schema/modx.transport.mysql.schema.xml core/src/"
],
"parse-schema": [
"composer run-script parse-schema-mysql"
],
"phpcs": "core/vendor/bin/phpcs --standard=phpcs.xml",
"phpcbf": "core/vendor/bin/phpcbf --standard=phpcs.xml",
"pre-autoload-dump": "Aws\\Script\\Composer\\Composer::removeUnusedServices"
},
"scripts-descriptions": {
"phpunit": "Run PHPUnit test"
},
"extra": {
"aws/aws-sdk-php": [
"S3"
]
},
"minimum-stability": "dev",
"prefer-stable": true,
"require-dev": {
"yoast/phpunit-polyfills": "^0.2.0",
"squizlabs/php_codesniffer": "3.*",
"phpcompatibility/php-compatibility": "^9.3"
}
}