-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·49 lines (49 loc) · 1.18 KB
/
composer.json
File metadata and controls
executable file
·49 lines (49 loc) · 1.18 KB
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
{
"name": "innomedia/bingmaps",
"description": "Silverstripe 4 Bing Maps Implementation",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Innomedia AG",
"email": "bk@innomedia.de"
}
],
"require": {
"silverstripe/recipe-cms": "^6"
},
"autoload": {
"psr-4": {
"bingmaps\\": "src/"
}
},
"extra": {
"expose": [
"client/js/react"
],
"project-files-installed": [
".htaccess",
"app/.htaccess",
"app/_config/mimevalidator.yml",
"app/_config/mysite.yml",
"app/src/Page.php",
"app/src/PageController.php"
],
"public-files-installed": [
".htaccess",
"index.php",
"web.config"
]
},
"config": {
"allow-plugins": {
"composer/installers": true,
"silverstripe/recipe-plugin": true,
"silverstripe/vendor-plugin": true
}
},
"require-dev": {
"rector/rector": "^2.2",
"phpstan/phpstan": "^2.1",
"wernerkrauss/silverstripe-rector": "^1.0"
}
}