-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
93 lines (93 loc) · 2.75 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
87
88
89
90
91
92
93
{
"name": "saro0h/to-do-list",
"license": "proprietary",
"type": "project",
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"minimum-stability": "stable",
"prefer-stable": true,
"require": {
"php": ">=8.1",
"doctrine/orm": "^2.10",
"doctrine/doctrine-bundle": "^2.7",
"symfony/polyfill-apcu": "^1.0",
"incenteev/composer-parameter-handler": "^2.0",
"blackfire/php-sdk": "^1.29",
"doctrine/dbal": "^2.6.0",
"laminas/laminas-zendframework-bridge": "^1.5",
"symfony/translation": "^6.0",
"doctrine/doctrine-migrations-bundle": "*",
"symfony/process": "^6.0",
"symfony/flex": "^1.19",
"symfony/asset": "^6.0",
"symfony/dotenv": "^6.0",
"symfony/proxy-manager-bridge": "^6.0",
"symfony/dependency-injection": "^6.0",
"symfony/config": "^6.0",
"symfony/framework-bundle": "^6.0",
"sensio/framework-extra-bundle": "^6.2",
"symfony/security-bundle": "^6.0",
"symfony/validator": "^6.0",
"symfony/monolog-bundle": "^3.8",
"symfony/form": "^6.0",
"symfony/twig-bundle": "^6.0",
"hautelook/alice-bundle": "^2.9",
"friendsofphp/php-cs-fixer": "^3.8",
"symfony/maker-bundle": "^1.43",
"infection/infection": "^0.26.6",
"symfony/runtime": "^6.0",
"phpstan/phpstan": "^1.8",
"phpstan/phpstan-doctrine": "^1.3"
},
"require-dev": {
"rector/rector": "^0.13.5",
"phpunit/phpunit": "^9.5",
"symfony/browser-kit": "^6.0",
"symfony/css-selector": "^6.0",
"symfony/dom-crawler": "^6.0",
"symfony/stopwatch": "^6.0",
"symfony/web-profiler-bundle": "^6.0",
"symfony/phpunit-bridge": "^6.1"
},
"scripts": {
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd"
},
"post-install-cmd": [
"@auto-scripts"
],
"post-update-cmd": [
"@auto-scripts"
]
},
"extra": {
"symfony-app-dir": "app",
"symfony-bin-dir": "bin",
"symfony-var-dir": "var",
"symfony-web-dir": "public",
"symfony-tests-dir": "tests",
"symfony-assets-install": "relative",
"incenteev-parameters": {
"file": "app/config/parameters.yml"
}
},
"config": {
"allow-plugins": {
"symfony/flex": true,
"infection/extension-installer": true,
"symfony/runtime": true
}
},
"conflict": {
"symfony/symfony": "*"
}
}