-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
83 lines (83 loc) · 2.37 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
{
"name": "symfony/framework-standard-edition",
"license": "MIT",
"type": "project",
"description": "MentalNote - simple bookmarking and productivity tool",
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\": "tests/"
},
"files": []
},
"require": {
"php": "^7.4|^8.0",
"doctrine/doctrine-bundle": "@stable",
"doctrine/doctrine-cache-bundle": "@stable",
"doctrine/doctrine-migrations-bundle": "@stable",
"doctrine/orm": "^2.6.0",
"friendsofsymfony/user-bundle": "dev-master",
"pagerfanta/pagerfanta": "^1.0.5",
"sensio/framework-extra-bundle": "@stable",
"symfony/browser-kit": "^4.0",
"symfony/console": "^4.0",
"symfony/flex": "^1.18",
"symfony/form": "^4.0",
"symfony/framework-bundle": "^4.0",
"symfony/http-client": "^4.0",
"symfony/lts": "^4@dev",
"symfony/monolog-bundle": "@stable",
"symfony/security-csrf": "^4.0",
"symfony/swiftmailer-bundle": "^3.1",
"symfony/twig-bundle": "^4.0",
"symfony/validator": "^4.0",
"symfony/yaml": "^4.0",
"twig/extensions": "~1.0",
"twig/extra-bundle": "^2.12|^3.0",
"twig/twig": "^2.12|^3.0",
"white-october/pagerfanta-bundle": "^1.0.5"
},
"require-dev": {
"codedungeon/phpunit-result-printer": "@stable",
"phpunit/phpunit": "^8.0",
"symfony/dotenv": "^4.0",
"symfony/stopwatch": "^4.0",
"symfony/web-profiler-bundle": "^4.0"
},
"scripts": {
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install --symlink --relative %PUBLIC_DIR%": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd"
},
"post-install-cmd": [
"@auto-scripts"
],
"post-update-cmd": [
"@auto-scripts"
]
},
"conflict": {
"symfony/symfony": "*"
},
"extra": {
"symfony": {
"allow-contrib": true,
"docker": false
}
},
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true,
"bin-dir": "bin",
"allow-plugins": {
"symfony/flex": true
}
}
}