-
Notifications
You must be signed in to change notification settings - Fork 43
/
composer.json
61 lines (61 loc) · 1.51 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
{
"name": "vagrant/seat",
"license": "proprietary",
"type": "project",
"autoload": {
"psr-4": {
"Symfony4\\": "src/Seat/Infrastructure/Symfony4/",
"Seat\\": "src/Seat/"
}
},
"autoload-dev": {
"psr-4": {
"SeatTest\\": "tests/unit/Seat/"
}
},
"config": {
"platform": {
"php": "7.2.0"
}
},
"require": {
"php": ">=7.2.0",
"ext-json": "*",
"symfony/symfony": "^4.0",
"twig/twig": "^2.7",
"doctrine/doctrine-bundle": "^1.6",
"doctrine/orm": "^2.5",
"doctrine/doctrine-migrations-bundle": "^1.2",
"symfony/swiftmailer-bundle": "^3.2",
"symfony/monolog-bundle": "^3.3",
"twig/extensions": "^1.4",
"ramsey/uuid": "^3.8",
"beberlei/assert": "^3.2",
"symfony/flex": "^1.2",
"sensio/framework-extra-bundle": "^5.3",
"symfony/webpack-encore-bundle": "^1.5",
"easycorp/easyadmin-bundle": "^2.1",
"friendsofsymfony/ckeditor-bundle": "^2.0",
"vich/uploader-bundle": "^1.9",
"oro/doctrine-extensions": "^1.2",
"sentry/sentry-symfony": "^2.3",
"symfony/twig-bundle": "^4.2"
},
"require-dev": {
"phpunit/phpunit": "^7.5",
"symfony/phpunit-bridge": "*"
},
"scripts": {
"auto-scripts": {
"bin/console cache:clear": "script",
"bin/console ckeditor:install --clear=drop": "symfony-cmd",
"bin/console assets:install --symlink --relative %PUBLIC_DIR%": "script"
},
"post-install-cmd": [
"@auto-scripts"
],
"post-update-cmd": [
"@auto-scripts"
]
}
}