-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
81 lines (81 loc) · 2.31 KB
/
Copy pathcomposer.json
File metadata and controls
81 lines (81 loc) · 2.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
{
"name": "t3g/analytics",
"description": "TYPO3 Analytics Extension",
"type": "typo3-cms-extension",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "TYPO3 GmbH",
"email": "support@typo3.com",
"homepage": "https://typo3.com",
"role": "Developer"
}
],
"support": {
"docs": "https://docs.typo3.org/permalink/t3g-analytics:start",
"issues": "https://github.com/TYPO3GmbH/analytics/issues",
"source": "https://github.com/TYPO3GmbH/analytics"
},
"require": {
"php": "^8.2",
"ext-sodium": "*",
"typo3/cms-core": "^13.4 || ^14.0",
"typo3/cms-backend": "^13.4 || ^14.0",
"typo3/cms-dashboard": "^13.4 || ^14.0"
},
"require-dev": {
"phpstan/phpstan": "^2.1",
"rector/rector": "^2.4",
"friendsofphp/php-cs-fixer": "^3.64",
"typo3/testing-framework": "^8.0 || ^9.0",
"phpunit/phpunit": "^11.0",
"ssch/typo3-rector": "^3.13",
"saschaegerer/phpstan-typo3": "^3.0"
},
"autoload": {
"psr-4": {
"T3G\\Analytics\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"T3G\\Analytics\\Tests\\": "Tests/"
}
},
"version": "1.1.0",
"extra": {
"typo3/cms": {
"extension-key": "analytics",
"Package": {
"providesPackages": {}
}
}
},
"scripts": {
"dummy-typo3": "bash .ddev/commands/web/setup-dummy-typo3.sh",
"t3g:typo3:composer-update": "composer --working-dir .Build/dummy-typo3 update",
"t3g:rector:dry-run": "rector process --dry-run --config Build/rector.php",
"t3g:rector:fix": "rector process --config Build/rector.php",
"t3g:cgl": [
"php-cs-fixer fix --config Build/php-cs-fixer.php -v --dry-run --diff"
],
"t3g:cgl:fix": [
"php-cs-fixer fix --config Build/php-cs-fixer.php"
],
"t3g:phpstan": [
"phpstan analyze --configuration Build/phpstan.neon"
],
"t3g:phpstan:create-baseline": [
"phpstan analyze --configuration Build/phpstan.neon --generate-baseline Build/phpstan-baseline.neon"
],
"t3g:test": "phpunit -c Build/phpunit.xml",
"t3g:test:unit": "phpunit -c Build/phpunit.xml --testsuite unit",
"t3g:test:functional": "phpunit -c Build/phpunit.functional.xml"
},
"config": {
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
}
}
}