forked from IchHabRecht/social_gdpr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
62 lines (62 loc) · 1.73 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
{
"name": "ichhabrecht/social-gdpr",
"description": "Show social media after user confirmation",
"type": "typo3-cms-extension",
"homepage": "https://github.com/IchHabRecht/social_gdpr",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Nicole Cordes",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^8.2",
"typo3/cms-core": "^13.4"
},
"require-dev": {
"typo3/testing-framework": "^8.2.7",
"sbuerk/typo3-cmscomposerinstallers-testingframework-bridge": "^0.1.0",
"phpspec/prophecy": "^1.16",
"php-parallel-lint/php-parallel-lint": "^1.4",
"phpunit/phpunit": "^11.5.10"
},
"conflict": {
"psr/container": "<1.1",
"typo3/testing-framework": ">=7.0.0 <7.0.4"
},
"autoload": {
"psr-4": {
"IchHabRecht\\SocialGdpr\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"IchHabRecht\\SocialGdpr\\Tests\\": "Tests/"
}
},
"replace": {
"typo3-ter/social-gdpr": "self.version"
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin",
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true,
"sbuerk/typo3-cmscomposerinstallers-testingframework-bridge": true
}
},
"extra": {
"branch-alias": {
"dev-master": "3.x-dev"
},
"typo3/cms": {
"extension-key": "social_gdpr",
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"app-dir": ".Build",
"web-dir": ".Build/public"
}
}
}