-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
39 lines (39 loc) · 1022 Bytes
/
composer.json
File metadata and controls
39 lines (39 loc) · 1022 Bytes
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
{
"require": {
"php": ">=7.2",
"ext-curl": "*",
"ext-mbstring": "*",
"ext-json": "*",
"ext-openssl": "*",
"ext-xml": "*",
"slim/slim": "^3.0",
"monolog/monolog": "^1.23",
"php-di/slim-bridge": "^2.0",
"doctrine/orm":"^2.0",
"firebase/php-jwt": "^5.0",
"ulrichsg/getopt-php": "^3.0",
"marcj/topsort": "^1.1",
"ext-fileinfo": "*",
"wikimedia/composer-merge-plugin": "*"
},
"autoload": {
"psr-4": {
"Oforge\\Engine\\": "Engine/",
"Oforge\\Themes\\": "Themes/",
"Oforge\\Plugins\\": "Plugins/"
},
"files": ["Engine/Core/BlackSmith.php"]
},
"extra": {
"merge-plugin": {
"include": [
"Plugins/*/composer.json"
],
"recurse": true,
"replace": false,
"merge-dev": false
}
},
"minimum-stability": "dev",
"prefer-stable": true
}