-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
83 lines (83 loc) · 2.6 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
{
"name": "t3g/usercentrics",
"description": "This extension provides a usercentrics integration 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/typo3cms/extensions/usercentrics/",
"source": "https://github.com/TYPO3GmbH/ext-usercentrics"
},
"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,
"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",
"app-dir": ".build"
},
"branch-alias": {
"dev-develop": "12.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": [
"@t3g:test:php:lint",
"@t3g:test:php:unit"
],
"t3g:cgl": [
"Build/tools/php-cs-fixer/vendor/bin/php-cs-fixer fix --config=.php_cs-fixer.dist.php -v --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"
]
},
"require": {
"php": "^7.4 || ^8.0",
"ext-json": "*",
"typo3/cms-core": "^11.4 || ^12.4"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"typo3/testing-framework": "^7.0 || ^8.0",
"phpunit/phpunit": "^8.4 || ^9.0"
}
}