-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
45 lines (45 loc) · 1007 Bytes
/
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
{
"name": "jweiland/indexnow",
"description": "TYPO3 extension to inform various search engines over IndexNow endpoint about content updates",
"type": "typo3-cms-extension",
"license": "GPL-2.0-or-later",
"homepage": "https://jweiland.net",
"authors": [
{
"name": "Stefan Froemken",
"email": "sfroemken@jweiland.net"
}
],
"require": {
"typo3/cms-core": "^12.4.15 || ^13.4.0"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.44",
"typo3/coding-standards": "^0.8",
"typo3/testing-framework": "^8.2"
},
"replace": {
"typo3-ter/indexnow": "self.version"
},
"autoload": {
"psr-4": {
"JWeiland\\IndexNow\\": "Classes/"
}
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin",
"allow-plugins": {
"ergebnis/composer-normalize": true,
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
}
},
"extra": {
"typo3/cms": {
"extension-key": "indexnow",
"app-dir": ".Build",
"web-dir": ".Build/Web"
}
}
}