-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
78 lines (78 loc) · 2.54 KB
/
composer.json
File metadata and controls
78 lines (78 loc) · 2.54 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
{
"name": "softspring/google-cloud-integration-bundle",
"description": "This bundle provides Google Cloud integrations for Symfony.",
"license": "AGPL-3.0-or-later",
"type": "symfony-bundle",
"require": {
"php": ">=8.4",
"google/cloud-error-reporting": "^0.22",
"google/cloud-logging": "^1.24"
},
"require-dev": {
"doctrine/dbal": "^2.10 || ^3.0 || ^4.0",
"ergebnis/composer-normalize": "^2.50",
"friendsofphp/php-cs-fixer": "^3.94",
"opencensus/opencensus-exporter-stackdriver": "^0.1.0",
"phpstan/phpstan": "^2.1",
"rector/rector": "^2.3",
"symfony/config": "^6.4 || ^7.4 || ^8.0",
"symfony/dependency-injection": "^6.4 || ^7.4 || ^8.0",
"symfony/http-kernel": "^6.4 || ^7.4 || ^8.0",
"twig/twig": "^3.4"
},
"suggest": {
"opencensus/opencensus-exporter-stackdriver": "Integrate with Google Cloud Trace and opencensus"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Softspring\\Component\\GoogleCloudIntegrationBundle\\": "src/"
},
"files": [
"scripts/error_reporting.php",
"scripts/trace.php"
]
},
"autoload-dev": {
"psr-4": {
"Softspring\\Component\\GoogleCloudIntegrationBundle\\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",
"vendor/bin/yaml-lint config/ -vvv --parse-tags",
"vendor/bin/yaml-lint translations/ -vvv --parse-tags"
],
"test": [
"composer update --no-scripts --ansi",
"@run-tests"
],
"test-bc": [
"composer update --no-scripts --ansi --prefer-lowest --prefer-stable",
"@run-tests"
]
}
}