-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
80 lines (80 loc) · 2.74 KB
/
composer.json
File metadata and controls
80 lines (80 loc) · 2.74 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
{
"name": "teamneusta/sentry-tracing-typo3",
"description": "Sentry Tracing for TYPO3",
"license": "GPL-3.0-or-later",
"type": "typo3-cms-extension",
"require": {
"networkteam/sentry-client": "*",
"typo3/cms-core": "^12.4"
},
"require-dev": {
"ergebnis/composer-normalize": "dev-main",
"friendsofphp/php-cs-fixer": "^3.14",
"phpstan/extension-installer": "1.2.x-dev",
"phpstan/phpstan": "1.11.x-dev",
"phpstan/phpstan-phpunit": "^1.3",
"phpstan/phpstan-strict-rules": "1.5.x-dev",
"roave/security-advisories": "dev-latest",
"seld/jsonlint": "dev-main",
"symfony/yaml": "6.3.x-dev",
"typo3/coding-standards": "*",
"typo3/testing-framework": "*"
},
"autoload": {
"psr-4": {
"Neusta\\SentryTracing\\": "Classes"
}
},
"autoload-dev": {
"psr-4": {
"Neusta\\SentryTracing\\Tests\\": "Tests"
}
},
"config": {
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true,
"php-http/discovery": true,
"ergebnis/composer-normalize": true,
"phpstan/extension-installer": true
},
"bin-dir": ".build/bin",
"vendor-dir": ".build/vendor"
},
"extra": {
"typo3/cms": {
"app-dir": ".build",
"extension-key": "sentry_tracing",
"web-dir": ".build/public"
}
},
"scripts": {
"ci:all": [
"@ci:cgl:check",
"@ci:lint:typoscript",
"@ci:lint:yaml",
"@ci:tests:unit",
"@ci:tests:functional",
"@ci:rector:check"
],
"ci:cgl:check": [
"export PHP_CS_FIXER_IGNORE_ENV=1 && php-cs-fixer fix --config ./build/apps/phpcgl/.php-cs-fixer.php -v --dry-run --diff --ansi"
],
"ci:cgl:fix": [
"export PHP_CS_FIXER_IGNORE_ENV=1 && php-cs-fixer fix --config ./build/apps/phpcgl/.php-cs-fixer.php -v --ansi"
],
"ci:composer:normalize": "@composer normalize --no-check-lock --dry-run",
"ci:lint:yaml": [
"yaml-lint --parse-tags . --format=github > ./yaml-lint.log"
],
"phpstan": [
"phpstan analyse --configuration ./build/apps/phpstan/phpstan.neon"
],
"phpstan-baseline": [
"phpstan analyse --configuration ./build/apps/phpstan/phpstan.neon --generate-baseline=./build/apps/phpstan/phpstan-baseline.neon --allow-empty-baseline"
],
"phpstan-ci": [
"phpstan analyse --configuration ./build/apps/phpstan/phpstan.neon --error-format=gitlab --no-progress > codeclimate.json"
]
}
}