-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
67 lines (67 loc) · 1.61 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
{
"name": "m2s/typo3-poi-map",
"type": "typo3-cms-extension",
"description": "Categorized points of interest with GoogleMaps integration",
"version": "1.3.3",
"keywords": [
"typo3",
"google maps",
"locations",
"places",
"points of interest"
],
"license": "GPL-2.0-or-later",
"scripts": {
"pre-install-cmd": [
"@huskyBackup"
],
"pre-update-cmd": [
"@huskyBackup"
],
"post-install-cmd": [
"@huskyRestore"
],
"post-update-cmd": [
"@huskyRestore"
],
"huskyBackup": [
"if [ -f .git/hooks/commit-msg ]; then mv .git/hooks/commit-msg .git/hooks/commit-msg.husky; fi"
],
"huskyRestore": [
"if [ -f .git/hooks/commit-msg.husky ]; then mv .git/hooks/commit-msg.husky .git/hooks/commit-msg; elif [ -f .git/hooks/commit-msg ] && [[ -z $(cat .git/hooks/commit-msg | grep husky) ]]; then rm .git/hooks/commit-msg; fi"
]
},
"authors": [
{
"name": "Michael Marcenich",
"email": "info@m-squared-solutions.it",
"homepage": "https://m-squared-solutions.it",
"role": "Developer"
}
],
"require": {
"php": ">=7.0 <7.3",
"typo3/cms-core": "^8.7",
"typo3/cms-extbase": "^8.7",
"typo3/cms-fluid": "^8.7"
},
"autoload": {
"psr-4": {
"M2S\\PoiMap\\": "Classes/"
}
},
"extra": {
"typo3/cms": {
"extension-key": "poi_map"
}
},
"replace": {
"typo3-ter/poi_map": "self.version"
},
"require-dev": {
"phpro/grumphp": "^0.15.2",
"squizlabs/php_codesniffer": "^3.4",
"cakephp/cakephp-codesniffer": "^3.1",
"slevomat/coding-standard": "^5.0"
}
}