-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
55 lines (55 loc) · 1.1 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
{
"name": "hmmh/gridelements-doctor",
"description": "Validate and repair gridelements infrastructure",
"keywords": [
"gridelements",
"doctor",
"validate",
"repair",
"optimize",
"migrate",
"migration",
"typo3"
],
"type": "library",
"license": "GPL-3.0",
"homepage": "https://github.com/hmmh/gridelements-doctor/",
"authors": [
{
"name": "Jan Runte",
"email": "jan.runte@hmmh.de"
}
],
"config": {
"vendor-dir": "vendor",
"optimize-autoloader": true,
"process-timeout": 600,
"sort-packages": true
},
"require": {
"php": "^7.1",
"ext-pdo": "*",
"ext-mbstring": "*",
"doctrine/dbal": "^2.9",
"helhum/dotenv-connector": "~2.1.0"
},
"require-dev": {
"composer/composer": "~1.8.0"
},
"autoload": {
"psr-4": {
"HMMH\\GridelementsDoctor\\": "Classes/"
}
},
"bin": [
"bin/griddoc.php"
],
"scripts-descriptions": {
"doctor": "-- GRIDELEMENTS -- Examine your installation for invalid data."
},
"scripts": {
"doctor": [
"HMMH\\GridelementsDoctor\\Doctor::visit"
]
}
}