-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathcomposer.json
More file actions
32 lines (32 loc) · 851 Bytes
/
composer.json
File metadata and controls
32 lines (32 loc) · 851 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
{
"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"],
"require": {
"php": "^8.2",
"typo3/cms-core": "^13.4 || ^14.3"
},
"extra": {
"typo3/cms": {
"extension-key": "geocoding"
}
},
"autoload": {
"psr-4": {
"B13\\Geocoding\\": "Classes/"
}
},
"require-dev": {
"typo3/coding-standards": "^0.8.0",
"saschaegerer/phpstan-typo3": "^2.0 || ^3.0"
},
"config": {
"allow-plugins": {
"typo3/cms-composer-installers": true,
"typo3/class-alias-loader": true
}
}
}