-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathcomposer.json
More file actions
88 lines (88 loc) · 2.53 KB
/
composer.json
File metadata and controls
88 lines (88 loc) · 2.53 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
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
{
"name": "ansto/refdb",
"license": "MIT",
"type": "project",
"description": "Citation Database for JaCOW Catalog",
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\": "tests/"
}
},
"require": {
"php": ">=7.2",
"ext-curl": "*",
"ext-json": "*",
"doctrine/common": "^2.8",
"doctrine/doctrine-bundle": "^2.2",
"doctrine/doctrine-migrations-bundle": "^3.0",
"doctrine/orm": "^2.7",
"friendsofsymfony/jsrouting-bundle": "^2.2",
"friendsofsymfony/user-bundle": "~2.1",
"fvozar/twig-ordinal-number-filter": "^1.0",
"jms/serializer-bundle": "^3.5.0",
"knplabs/knp-paginator-bundle": "^2.8",
"sensio/framework-extra-bundle": "^5.0.0",
"sentry/sentry-symfony": "^3.1",
"symfony/apache-pack": "^1.0",
"symfony/asset": "4.4.*",
"symfony/config": "4.4.*",
"symfony/console": "4.4.*",
"symfony/dotenv": "4.4.*",
"symfony/flex": "^1.12",
"symfony/framework-bundle": "4.4.*",
"symfony/intl": "4.4.*",
"symfony/monolog-bundle": "^3.4",
"symfony/proxy-manager-bridge": "4.4.*",
"symfony/security-bundle": "4.4.*",
"symfony/swiftmailer-bundle": "^3.2",
"symfony/templating": "4.4.*",
"symfony/translation": "4.4.*",
"symfony/twig-bundle": "^4.4",
"symfony/validator": "4.4.*",
"symfony/yaml": "4.4.*",
"twig/extra-bundle": "^2.12|^3.0",
"twig/twig": "^2.12|^3.0"
},
"require-dev": {
"doctrine/data-fixtures": "~1.3",
"doctrine/doctrine-fixtures-bundle": "^3.0",
"symfony/phpunit-bridge": "^4.0",
"symfony/stopwatch": "^5.2",
"symfony/web-profiler-bundle": "^5.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"
]
},
"config": {
"sort-packages": true,
"preferred-install": {
"*": "dist"
},
"platform": {
"php": "7.2.17"
}
},
"extra": {
"symfony": {
"allow-contrib": true
}
},
"conflict": {
"symfony/symfony": "*"
}
}