-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
76 lines (76 loc) · 2.06 KB
/
composer.json
File metadata and controls
76 lines (76 loc) · 2.06 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
{
"name": "open-telemetry/dev-tools",
"type": "library",
"description": "Development tools for OpenTelemetry PHP.",
"authors": [
{
"name": "Timo Michna",
"email": "timomichna@yahoo.de"
}
],
"license": "Apache-2.0",
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^8.1",
"ext-json": "*",
"ext-simplexml": "*",
"composer/composer": "^2.3",
"gitonomy/gitlib": "^1.3",
"knplabs/github-api": "^3.4",
"kriswallsmith/buzz": "^1.2",
"nyholm/psr7": "^1.4",
"php-http/discovery": "^1.19",
"symfony/polyfill-php82": "^1.26",
"symfony/polyfill-php83": "^1.32",
"symfony/polyfill-php84": "^1.32",
"symfony/runtime": "^5.0|^6.0|^7.0|^8.0",
"symfony/service-contracts": "^1|^2.5|^3.0",
"symfony/yaml": "^4.4|^5.3|^6.0|^7.0|^8.0"
},
"autoload": {
"psr-4": {
"OpenTelemetry\\DevTools\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"OpenTelemetry\\DevTools\\Tests\\": "tests"
}
},
"require-dev": {
"bamarni/composer-bin-plugin": "^1.8",
"mikey179/vfsstream": "^1.6",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-mockery": "^1.0",
"phpstan/phpstan-phpunit": "^1.0",
"phpunit/phpunit": "^9.3"
},
"scripts": {
"post-install-cmd": [
"composer dump-autoload --optimize"
],
"post-update-cmd": [
"composer dump-autoload --optimize"
]
},
"bin": [
"bin/otel"
],
"config": {
"sort-packages": true,
"allow-plugins": {
"bamarni/composer-bin-plugin": true,
"composer/package-versions-deprecated": true,
"php-http/discovery": false,
"symfony/runtime": true
}
},
"extra": {
"bamarni-bin": {
"bin-links": false,
"target-directory": "vendor-bin",
"forward-command": true
}
}
}