forked from Kephson/paste_reference
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
89 lines (89 loc) · 2.24 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "ehaerer/paste-reference",
"description": "Paste reference instead of copy for content elements in TYPO3",
"license": "MIT",
"type": "typo3-cms-extension",
"keywords": [
"TYPO3 CMS",
"content element",
"copy paste",
"references"
],
"authors": [
{
"name": "Ephraim Härer",
"email": "[email protected]",
"homepage": "https://ephra.im",
"role": "Developer"
}
],
"homepage": "https://github.com/kephson/paste-reference",
"support": {
"issues": "https://github.com/kephson/paste-reference/issues"
},
"require": {
"php": "^8.1",
"typo3/cms-backend": "^12.4",
"typo3/cms-core": "^12.4"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.31",
"friendsofphp/php-cs-fixer": "^3.64.0",
"phpstan/phpstan": "^1.12.5",
"phpstan/phpstan-phpunit": "^1.4.0",
"phpunit/phpunit": "^10.5.35",
"typo3/cms-adminpanel": "^12.4",
"typo3/cms-belog": "^12.4",
"typo3/cms-beuser": "^12.4",
"typo3/cms-dashboard": "^12.4",
"typo3/cms-extbase": "^12.4",
"typo3/cms-extensionmanager": "^12.4",
"typo3/cms-filelist": "^12.4",
"typo3/cms-fluid": "^12.4",
"typo3/cms-fluid-styled-content": "^12.4",
"typo3/cms-form": "^12.4",
"typo3/cms-frontend": "^12.4",
"typo3/cms-info": "^12.4",
"typo3/cms-install": "^12.4",
"typo3/cms-lowlevel": "^12.4",
"typo3/cms-opendocs": "^12.4",
"typo3/cms-recycler": "^12.4",
"typo3/cms-redirects": "^12.4",
"typo3/cms-reports": "^12.4",
"typo3/cms-rte-ckeditor": "^12.4",
"typo3/cms-scheduler": "^12.4",
"typo3/cms-seo": "^12.4",
"typo3/cms-setup": "^12.4",
"typo3/cms-styleguide": "^12.0.5",
"typo3/cms-tstemplate": "^12.4",
"typo3/cms-viewpage": "^12.4",
"typo3/cms-workspaces": "^12.4",
"typo3/testing-framework": "^8.2.2"
},
"conflict": {
"gridelementsteam/gridelements": "*"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"EHAERER\\PasteReference\\": "Classes"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
},
"bin-dir": ".Build/bin",
"sort-packages": true,
"vendor-dir": ".Build/vendor"
},
"extra": {
"typo3/cms": {
"extension-key": "paste_reference",
"web-dir": ".Build/public"
}
}
}