forked from b13/geocoding
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
35 lines (35 loc) · 751 Bytes
/
composer.json
File metadata and controls
35 lines (35 loc) · 751 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
{
"name": "b13/geocoding",
"type": "typo3-cms-extension",
"description": "Services for using geocoding from Google inside TYPO3 database records",
"homepage": "https://github.com/b13/t3ext-geocoding",
"license": "GPL-2.0-or-later",
"keywords": [
"TYPO3 CMS",
"TYPO3",
"Google Geocoding"
],
"support": {
"support": "https://github.com/b13/t3ext-geocoding"
},
"require": {
"php": ">=7.0 <7.3",
"typo3/cms-core": "^8.7.0 || <10.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.1"
},
"extra": {
"typo3/cms": {
"extension-key": "geocoding"
}
},
"replace": {
"geocoding": "self.version"
},
"autoload": {
"psr-4": {
"B13\\Geocoding\\": "Classes/"
}
}
}