-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathcomposer.json
More file actions
105 lines (105 loc) · 3.31 KB
/
Copy pathcomposer.json
File metadata and controls
105 lines (105 loc) · 3.31 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
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "t3g/usercentrics",
"description": "Usercentrics Integration for TYPO3 - Integrates Usercentrics (Compliance and Consent Management) into TYPO3.",
"type": "typo3-cms-extension",
"license": "GPL-2.0-or-later",
"minimum-stability": "dev",
"prefer-stable": true,
"authors": [
{
"name": "TYPO3 GmbH",
"role": "Developer",
"homepage": "https://typo3.com/"
}
],
"homepage": "https://extensions.typo3.org/extension/usercentrics/",
"support": {
"issues": "https://github.com/TYPO3GmbH/ext-usercentrics/issues",
"docs": "https://docs.typo3.org/p/t3g/usercentrics/main/en-us/",
"source": "https://github.com/TYPO3GmbH/ext-usercentrics"
},
"repositories": [
{
"type": "path",
"url": "Build/usercentrics_demo",
"options": {
"symlink": true
}
}
],
"require": {
"php": "^8.2",
"ext-json": "*",
"typo3/cms-core": "^13.4.15 || ^14.3",
"typo3/cms-fluid": "^13.4.15 || ^14.3"
},
"require-dev": {
"phpunit/phpunit": "^11.2.5 || ^12.0",
"roave/security-advisories": "dev-latest",
"t3g/usercentrics-demo": "@dev",
"typo3/cms-filelist": "^13.4.15 || ^14.3",
"typo3/cms-frontend": "^13.4.15 || ^14.3",
"typo3/cms-install": "^13.4.15 || ^14.3",
"typo3/testing-framework": "^9.1.2"
},
"autoload": {
"psr-4": {
"T3G\\AgencyPack\\Usercentrics\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"T3G\\AgencyPack\\Usercentrics\\Tests\\": "Tests/"
}
},
"config": {
"bin-dir": ".build/bin",
"discard-changes": true,
"optimize-autoloader": true,
"sort-packages": true,
"vendor-dir": ".build/vendor",
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
}
},
"extra": {
"typo3/cms": {
"extension-key": "usercentrics",
"web-dir": ".build/public",
"version": "13.0.0",
"Package": {
"providesPackages": {}
}
},
"branch-alias": {
"dev-develop": "13.0.x-dev"
}
},
"scripts": {
"t3g:test:php:lint": [
"Build/tools/phplint/vendor/bin/phplint"
],
"t3g:test:php:unit": [
"phpunit -c Build/UnitTests.xml"
],
"t3g:test:php:functional": [
"phpunit -c Build/FunctionalTests.xml"
],
"t3g:test": [
"@t3g:test:php:lint",
"@t3g:test:php:unit",
"@t3g:test:php:functional"
],
"t3g:cgl": [
"Build/tools/php-cs-fixer/vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.dist.php --diff --dry-run"
],
"t3g:cgl:fix": [
"Build/tools/php-cs-fixer/vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.dist.php"
],
"post-autoload-dump": [
"[ -d .build/public/_assets ] || mkdir -p .build/public/typo3conf/ext/",
"[ -d .build/public/_assets ] || [ -L .build/public/typo3conf/ext/usercentrics ] || ln -snvf ../../../../. .build/public/typo3conf/ext/usercentrics"
]
}
}