-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
100 lines (100 loc) · 3.05 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
94
95
96
97
98
99
100
{
"name": "ivan1986/deb-pkg",
"license": "MIT",
"type": "project",
"prefer-stable": true,
"description": "Generate deb packages for repository",
"autoload": {
"psr-4": {
"Ivan1986\\": "src/"
},
"classmap": [
"app/AppKernel.php",
"app/AppCache.php"
]
},
"config": {
"platform": {
"php": "7.4"
},
"preferred-install": "source",
"discard-changes": true
},
"require": {
"php": "~7.4",
"ext-xml": "*",
"ext-gnupg": "*",
"doctrine/orm": "^2.5",
"doctrine/doctrine-bundle": "^1.5",
"doctrine/doctrine-migrations-bundle": "~1",
"friendsofsymfony/rest-bundle": "~2",
"jms/serializer-bundle": "~1",
"lunetics/locale-bundle": "~2.0",
"nelmio/api-doc-bundle": "~2.0",
"incenteev/composer-parameter-handler": "~2",
"sensio/distribution-bundle": "~5",
"sensio/generator-bundle": "~3",
"sensio/framework-extra-bundle": "~3",
"sonata-project/doctrine-orm-admin-bundle": "~3.0",
"sonata-project/easy-extends-bundle": "~2.1",
"sonata-project/user-bundle": "~4.0",
"sonata-project/exporter": "~1.7",
"sonata-project/core-bundle": "~3.3",
"stof/doctrine-extensions-bundle": "~1.2",
"symfony/assetic-bundle": "~2.8",
"symfony/monolog-bundle": "~3.0",
"symfony/swiftmailer-bundle": "~2.5",
"symfony/symfony": "~3.4",
"twig/twig": "^2.9",
"twig/extensions": "~1.4",
"mopa/bootstrap-bundle": "~3.1",
"twbs/bootstrap-sass": "~3.3",
"fourlabs/gamp-bundle": "~2.2",
"white-october/pagerfanta-bundle": "~1",
"elao/error-notifier-bundle": "~1",
"endroid/google-analytics-bundle": "~1",
"guzzlehttp/guzzle": "^6.2",
"doctrine/doctrine-cache-bundle": "^1.3",
"cweagans/composer-patches": "~1",
"scssphp/scssphp": "~0.7"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "~2.1",
"symfony/phpunit-bridge": "^3",
"consolidation/robo": "~1"
},
"scripts": {
"symfony": [
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
"Mopa\\Bundle\\BootstrapBundle\\Composer\\ScriptHandler::postInstallSymlinkTwitterBootstrapSass",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::prepareDeploymentTarget"
],
"post-install-cmd": [
"@symfony"
],
"post-update-cmd": [
"@symfony"
]
},
"minimum-stability": "dev",
"extra": {
"symfony-app-dir": "app",
"symfony-bin-dir": "bin",
"symfony-var-dir": "var",
"symfony-web-dir": "web",
"symfony-tests-dir": "tests",
"symfony-assets-install": "relative",
"incenteev-parameters": {
"file": "app/config/parameters.yml"
},
"patches": {
"kriswallsmith/assetic": {
"fix class": "patch/scss.patch"
}
}
}
}