-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
118 lines (118 loc) · 3.33 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
{
"name": "mistralys/application_framework",
"description": "Application admin UI Framework.",
"type": "library",
"license": "LGPL-3.0-or-later",
"authors": [
{
"name": "Sebastian Mordziol",
"email": "[email protected]",
"homepage": "https://www.mistralys.eu",
"role": "Lead"
}
],
"autoload": {
"classmap": [
"src/classes/",
"src/themes/default/templates",
"tests/application/assets/classes",
"tests/application/themes",
"tests/AppFrameworkTestClasses"
],
"files": [
"src/functions/functions.php"
]
},
"autoload-dev": {
"classmap": [
"tests/application/assets/classes",
"tests/AppFrameworkTestClasses"
]
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/Mistralys/mousetrap.git"
},
{
"type": "vcs",
"url": "https://github.com/medialize/URI.js.git"
},
{
"type": "vcs",
"url": "https://github.com/Mistralys/deepl-api-connector.git"
},
{
"type": "package",
"package": {
"name": "marcj/css-element-queries",
"version": "1.2.2",
"type": "library",
"source": {
"url": "https://github.com/marcj/css-element-queries.git",
"type": "git",
"reference": "master"
}
}
},
{
"type": "vcs",
"url": "https://github.com/zenorocha/clipboard.js.git"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"psr/log": ">=1.1.0",
"mistralys/application-framework-docs": ">=1.0.1",
"mistralys/appframework-ckeditor5": ">=1.0.0",
"mistralys/application-utils": ">=3.1.0",
"mistralys/application-utils-core": ">=1.2.0",
"mistralys/application-utils-collections": ">=1.1.1",
"mistralys/application-utils-image": ">=1.2.0",
"mistralys/application-localization": ">=1.5.0",
"mistralys/changelog-parser": ">=1.0.1",
"mistralys/deepl-xml-translator": ">=2.0.2",
"mistralys/subsetsum": ">=1.0.2",
"mistralys/markdown-viewer": ">=1.3.1",
"mistralys/html_quickform2": ">=2.3.3",
"mistralys/version-parser": ">=2.1.1",
"pear/http_request2": "^v2.5.1",
"phpmailer/phpmailer": "^v6.9.1",
"shark/simple_html_dom": "dev-master",
"ccampbell/mousetrap": "dev-master",
"medialize/uri.js": "^1.19.11",
"ulrichsg/getopt-php": "^4.0.2",
"lipis/flag-icons": "^6.8",
"desandro/masonry": "v4.2.2",
"marcj/css-element-queries": "^1.2.2",
"hybridauth/hybridauth": "^3.8.2",
"league/commonmark": "^2.6.0",
"zenorocha/clipboardjs": "v2.0.8",
"apereo/phpcas": "^1.6.1",
"roave/security-advisories": "dev-latest",
"ext-json": "*",
"ext-mbstring": "*",
"ext-pdo": "*",
"php": ">=7.4",
"ext-simplexml": "*"
},
"require-dev": {
"phpunit/phpunit": ">=9.6",
"phpstan/phpstan": ">=1.10",
"ext-curl": "*",
"css-crush/css-crush": "v4.1.3"
},
"config": {
"allow-plugins": {
"php-http/discovery": true,
"composer/installers": true,
"oomphinc/composer-installers-extender": true
}
},
"scripts": {
"post-autoload-dump": "Application\\Composer\\ComposerScripts::clearClassCache",
"clear-class-cache": "Application\\Composer\\ComposerScripts::clearClassCache",
"clear-caches": "Application\\Composer\\ComposerScripts::clearCaches"
}
}