-
-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathcomposer.json
86 lines (86 loc) · 2.45 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
82
83
84
85
86
{
"name": "blackfire/player",
"type": "project",
"description": "A powerful web crawler and web scraper with Blackfire support",
"keywords": ["scraper", "crawler", "blackfire"],
"homepage": "https://blackfire.io/player",
"license": "MIT",
"authors": [
{
"name": "Fabien Potencier",
"email": "[email protected]",
"homepage": "https://blackfire.io/",
"role": "Lead Developer"
}
],
"require": {
"php": ">=8.3",
"ext-ctype": "*",
"ext-filter": "*",
"ext-intl": "*",
"ext-mbstring": "*",
"blackfire/php-sdk": "^2.5",
"fakerphp/faker": "^1.10",
"maltyxx/images-generator": "^1.0",
"mtdowling/jmespath.php": "^2.2",
"nyholm/psr7": "^1.6",
"psr/log": "^3.0",
"sentry/sentry": "^4.0",
"symfony/console": "7.2.*",
"symfony/css-selector": "7.2.*",
"symfony/dom-crawler": "7.2.*",
"symfony/event-dispatcher": "7.2.*",
"symfony/expression-language": "7.2.*",
"symfony/filesystem": "7.2.*",
"symfony/finder": "^7.0",
"symfony/http-client": "7.2.*",
"symfony/mime": "7.2.*",
"symfony/polyfill-uuid": "^1.28",
"symfony/property-access": "7.2.*",
"symfony/serializer": "7.2.*",
"symfony/yaml": "7.2.*"
},
"require-dev": {
"phpunit/phpunit": "^11.0",
"rector/rector": "^2.0",
"symfony/process": "7.2.*",
"symfony/var-dumper": "7.2.*"
},
"replace": {
"symfony/polyfill-ctype": "*",
"symfony/polyfill-intl-grapheme": "*",
"symfony/polyfill-intl-idn": "*",
"symfony/polyfill-intl-normalizer": "*",
"symfony/polyfill-mbstring": "*",
"symfony/polyfill-php72": "*",
"symfony/polyfill-php81": "*",
"symfony/polyfill-php82": "*",
"symfony/polyfill-php83": "*"
},
"autoload": {
"psr-4" : {
"Blackfire\\Player\\" : "Player"
},
"exclude-from-classmap": [
"/Tests/"
]
},
"config": {
"platform": {
"php": "8.3"
},
"preferred-install": {
"*": "dist"
},
"sort-packages": true,
"platform-check": false,
"allow-plugins": {
"php-http/discovery": true
}
},
"extra": {
"branch-alias": {
"dev-master": "2.6-dev"
}
}
}