-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
81 lines (81 loc) · 2.78 KB
/
composer.json
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": "scoutapp/scout-apm-php",
"description": "Scout Application Performance Monitoring Agent - https://scoutapm.com",
"type": "library",
"homepage": "https://scoutapm.com/",
"license": "MIT",
"keywords": ["performance", "apm", "monitoring", "development"],
"require": {
"php": "7.1.*|7.2.*|7.3.*|7.4.*|8.0.*|8.1.*",
"ext-json": "*",
"ext-openssl": "*",
"ext-sockets": "*",
"ext-zlib": "*",
"php-http/discovery": "^1.14",
"psr/http-client": "^1.0",
"psr/http-client-implementation": "^1.0",
"psr/http-factory": "^1.0",
"psr/http-message": "^1.0",
"psr/log": "^1.0|^2.0|^3.0",
"psr/simple-cache": "^1.0",
"ralouphie/getallheaders": "^2.0.5|^3.0",
"ramsey/uuid": "^3.0|^4.2.2",
"webmozart/assert": "^1.0"
},
"require-dev": {
"composer-plugin-api": "^2.0",
"cache/array-adapter": "^1.1",
"doctrine/coding-standard": "^8.2",
"guzzlehttp/guzzle": "^7.3",
"laravel/framework": "^5.5.0|^6.0|^7.0|^8.0",
"laravel/lumen-framework": "^5.5.0|^6.0|^7.0|^8.0",
"monolog/monolog": "^1.26|^2.2.0",
"phpunit/phpunit": "^7.5.20|^8.5.22|^9.5.2",
"psalm/plugin-phpunit": "^0.15.1",
"symfony/config": "^4.0 || ^5.0",
"symfony/dependency-injection": "^4.0 || ^5.0",
"symfony/event-dispatcher": "^4.0 || ^5.0",
"symfony/http-kernel": "^4.0 || ^5.0",
"symfony/orm-pack": "^2.0",
"symfony/process": "^3.0 || ^4.0 || ^5.0",
"symfony/twig-pack": "^1.0",
"vimeo/psalm": "^4.6.4"
},
"suggest": {
"composer-runtime-api": "Composer v2 is required for seeing version information in metadata",
"ext-scoutapm": "Recommended for additional recording capability of IO-bound PHP internal functions",
"ext-mongodb": "Required for instrumentation of MongoDB"
},
"autoload": {
"psr-4": {
"Scoutapm\\": "src/"
},
"files": [
"./src/ScoutApmBundle/symfony-version-compatibility.php"
]
},
"autoload-dev": {
"psr-4": {
"Scoutapm\\IntegrationTests\\": "tests/Integration/",
"Scoutapm\\UnitTests\\": "tests/Unit/"
}
},
"extra": {
"laravel": {
"providers": [
"Scoutapm\\Laravel\\Providers\\ScoutApmServiceProvider"
],
"aliases": {
"ScoutApm": "Scoutapm\\Laravel\\Facades\\ScoutApm"
}
}
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"composer/package-versions-deprecated": true
}
}
}