-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
74 lines (74 loc) · 2.36 KB
/
composer.json
File metadata and controls
74 lines (74 loc) · 2.36 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
{
"name": "softspring/google-cloud-trace-bundle",
"description": "This bundle sends Symfony request traces to Google Cloud Trace",
"license": "AGPL-3.0-or-later",
"type": "symfony-bundle",
"require": {
"php": ">=8.4",
"google/cloud-trace": "^1.6"
},
"require-dev": {
"doctrine/dbal": "^2.10 || ^3.0 || ^4.0",
"ergebnis/composer-normalize": "^2.50",
"friendsofphp/php-cs-fixer": "^3.94",
"guzzlehttp/guzzle": "^7.8.2",
"guzzlehttp/promises": "^2.0",
"phpstan/phpstan": "^2.1",
"phpunit/phpunit": "^12.5",
"rector/rector": "^2.3",
"symfony/config": "^6.4 || ^7.4 || ^8.0",
"symfony/dependency-injection": "^6.4 || ^7.4 || ^8.0",
"symfony/event-dispatcher": "^6.4 || ^7.4 || ^8.0",
"symfony/framework-bundle": "^6.4 || ^7.4 || ^8.0",
"symfony/http-foundation": "^6.4 || ^7.4 || ^8.0",
"symfony/http-kernel": "^6.4 || ^7.4 || ^8.0",
"symfony/yaml": "^6.4 || ^7.4 || ^8.0",
"twig/twig": "^3.4"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Softspring\\GoogleCloudTraceBundle\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Softspring\\GoogleCloudTraceBundle\\Tests\\": "tests"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true
},
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-6.0": "6.0.x-dev"
}
},
"scripts": {
"fix": [
"vendor/bin/rector process src tests",
"vendor/bin/php-cs-fixer fix",
"composer normalize"
],
"run-tests": [
"composer validate --strict --no-check-lock --ansi",
"XDEBUG_MODE=coverage vendor/bin/phpunit",
"vendor/bin/rector process src tests --dry-run",
"vendor/bin/phpstan analyse src tests --level 5",
"vendor/bin/php-cs-fixer fix --dry-run --diff",
"vendor/bin/yaml-lint .github/ -vvv --parse-tags"
],
"test": [
"composer update --no-scripts --ansi",
"@run-tests"
],
"test-bc": [
"composer update --no-scripts --ansi --prefer-lowest --prefer-stable",
"@run-tests"
]
}
}