-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
composer.json
50 lines (50 loc) · 1.48 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
{
"name": "blackfire/php-sdk",
"description": "Blackfire.io PHP SDK",
"keywords": ["profiler", "xhprof", "performance", "uprofiler"],
"license": "MIT",
"authors": [
{
"name": "Blackfire.io",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.3.0",
"composer/ca-bundle": "^1.0"
},
"suggest": {
"ext-blackfire": "The C version of the Blackfire probe",
"ext-zlib": "To push config to remote profiling targets",
"symfony/panther": "To use Symfony web test cases with Blackfire"
},
"autoload": {
"psr-4": {
"Blackfire\\": "src/Blackfire"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.5-dev"
}
},
"require-dev": {
"symfony/http-client": "^5.1",
"symfony/browser-kit": "^5.1",
"psr/http-message": "^1.0",
"guzzlehttp/psr7": "^1.6",
"symfony/panther": "^1.0",
"symfony/framework-bundle": "^5.1",
"symfony/messenger": "^5.1",
"symfony/phpunit-bridge": "^5.2",
"phpunit/phpunit": "^9.5",
"behat/behat": "^3.8",
"friends-of-behat/mink-extension": "^2.5",
"friends-of-behat/mink-browserkit-driver": "^1.4",
"friends-of-behat/symfony-extension": "^2",
"illuminate/support": "^8.81",
"illuminate/console": "^8.81",
"illuminate/queue": "^8.81",
"laravel/octane": "^1.2"
}
}