-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathcomposer.json
80 lines (80 loc) · 2.33 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
{
"name": "beberlei/phprfcwatch",
"require": {
"php": "^8.1",
"ext-json": "*",
"ext-tideways": "@stable",
"ext-dom": "*",
"symfony/flex": "^2.0",
"symfony/config": "^6.3",
"sensio/framework-extra-bundle": "^6.2",
"symfony/asset": "^6.3",
"symfony/twig-bundle": "^6.3",
"symfony/monolog-bundle": "^3.3",
"symfony/form": "^6.3",
"symfony/security-bundle": "^6.3",
"symfony/translation": "^6.3",
"symfony/validator": "^6.3",
"symfony/yaml": "^6.3",
"phpunit/phpunit": "^9.5",
"gyro/mvc-bundle": "^1.0-beta",
"symfony/templating": "^6.3",
"kriswallsmith/buzz": "0.13.*",
"symfony/css-selector": "^6.3",
"laminas/laminas-feed": "^2.10",
"phake/phake": "^4.4",
"predis/predis": "^1.1",
"doctrine/coding-standard": "^9.0",
"symfony/webpack-encore-bundle": "^1.13",
"doctrine/doctrine-bundle": "^2.7",
"doctrine/doctrine-migrations-bundle": "^3.2",
"doctrine/orm": "^2.15",
"sentry/sentry-symfony": "^4.8",
"symfony/dotenv": "^6.3",
"symfony/config": "^6.3",
"symfony/scheduler": "^6.3",
"symfony/messenger": "^6.3",
"tideways/symfony-messenger-middleware": "^1.1",
"symfony/runtime": "^6.3"
},
"scripts": {
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd"
}
},
"require-dev": {
"symfony/maker-bundle": "^1.5",
"doctrine/doctrine-fixtures-bundle": "^3.0",
"symfony/stopwatch": "^6.3",
"symfony/web-profiler-bundle": "^6.3"
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\": "tests/"
}
},
"extra": {
"platform": {"php": "7.4"},
"symfony": {
"allow-contrib": true,
"require": "6.4.*"
}
},
"config": {
"allow-plugins": {
"symfony/flex": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"php-http/discovery": true,
"symfony/runtime": true
},
"platform": {
"ext-tideways": "1.0.0"
}
}
}