-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathcomposer.json
53 lines (53 loc) · 1.17 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
{
"name": "phpbb/area51",
"description": "phpBB's Area51 site",
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"require": {
"doctrine/orm": "~2.2,>=2.2.3",
"doctrine/doctrine-bundle": "^2.1",
"php": "^8.1",
"symfony/monolog-bundle": "~3.8",
"symfony/flex": "^2.4",
"symfony/framework-bundle": "^6.3",
"symfony/twig-bundle": "^6.3",
"twig/extra-bundle": "^2.12|^3.0",
"twig/twig": "^2.12|^3.0",
"symfony/yaml": "^6.3",
"sensio/framework-extra-bundle": "^6.2",
"symfony/asset": "^6.3",
"symfony/dotenv": "^6.3"
},
"require-dev": {
"phpunit/phpunit": "~9.6",
"symfony/browser-kit": "^6.3",
"symfony/css-selector": "^6.3"
},
"conflict": {
"symfony/symfony": "*"
},
"config": {
"bin-dir": "bin",
"allow-plugins": {
"symfony/flex": true
}
},
"extra": {
"extra": {
"public-dir": "web",
"symfony-var-dir": "var",
"symfony-bin-dir": "bin",
"symfony-assets-install": "relative"
}
},
"minimum-stability": "stable",
"scripts": {
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd"
}
}
}