-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
59 lines (59 loc) · 1.76 KB
/
composer.json
File metadata and controls
59 lines (59 loc) · 1.76 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
{
"name": "velpl/buggregator-profiler-bundle",
"description": "Symfony bundle integrating Buggregator profiler",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Velpl\\BuggregatorProfilerBundle\\": "src/",
"Velpl\\BuggregatorProfilerBundle\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Piotr Skowron",
"email": "poczta@piotrskowron.pl"
}
],
"minimum-stability": "stable",
"require": {
"php": "^8.3",
"spiral-packages/profiler": "^1.2"
},
"extra": {
"symfony": {
"require": "6.4.* || ^7.4 || ^8.0",
"allow-contrib": true
},
"allow-contrib": true
},
"config": {
"allow-plugins": {
"symfony/flex": true
}
},
"require-dev": {
"phpunit/phpunit": "^10",
"symfony/browser-kit": "6.4.* || ^7.4 || ^8.0",
"symfony/config": "^6 || ^7.4 || ^8.0",
"symfony/css-selector": "6.4.* || ^7.4 || ^8.0",
"symfony/dependency-injection": "^6 || ^7.4 || ^8.0",
"symfony/dotenv": "6.4.* || ^7.4 || ^8.0",
"symfony/flex": "^2.5",
"symfony/framework-bundle": "7.4.* || ^8.0",
"symfony/http-kernel": "^6 || ^7.4 || ^8.0",
"symfony/phpunit-bridge": "^6 || ^7.4 || ^8.0",
"symfony/yaml": "6.4.* || ^7.4 || ^8.0",
"symfony/stopwatch": "6.4.* || ^7.4 || ^8.0",
"friendsofphp/php-cs-fixer": "^3.84",
"phpstan/phpstan": "^2.1",
"phpstan/phpstan-symfony": "^2.0",
"dg/bypass-finals": "^1.9"
},
"scripts": {
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd"
}
}
}