-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathcomposer.json
More file actions
55 lines (55 loc) · 1.33 KB
/
composer.json
File metadata and controls
55 lines (55 loc) · 1.33 KB
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": "in2code/instagram",
"description": "Show images and posts from instagram profiles",
"keywords": [
"instagram"
],
"homepage": "https://github.com/in2code-de/instagram",
"authors": [
{
"name": "Alex Kellner",
"email": "alexander.kellner@in2code.de"
}
],
"type": "typo3-cms-extension",
"license": "GPL-2.0-or-later",
"require": {
"php": "^8.0",
"typo3/cms-core": "^12.4 || ^13.4",
"ext-json": "*"
},
"autoload": {
"psr-4": {
"In2code\\Instagram\\": "Classes/"
}
},
"config": {
"vendor-dir": ".build/vendor",
"bin-dir": ".build/bin",
"sort-packages": true,
"allow-plugins": {
"typo3/cms-composer-installers": true,
"typo3/class-alias-loader": true,
"phpstan/extension-installer": true
}
},
"extra": {
"typo3/cms": {
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": ".build/public",
"extension-key": "instagram"
}
},
"require-dev": {
"helhum/typo3-console": "^8.2",
"typo3/cms-backend": "^13.4",
"typo3/cms-extbase": "^13.4",
"typo3/cms-extensionmanager": "^13.4",
"typo3/cms-filelist": "^13.4",
"typo3/cms-fluid": "^13.4",
"typo3/cms-fluid-styled-content": "^13.4",
"typo3/cms-frontend": "^13.4",
"typo3/cms-install": "^13.4",
"typo3/minimal": "^13"
}
}