-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
78 lines (73 loc) · 2.5 KB
/
composer.json
File metadata and controls
78 lines (73 loc) · 2.5 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
{
"name": "smart-core/symfony-boilerplate",
"license": "MIT",
"type": "project",
"description": "The \"Symfony Standard Edition\" distribution by Smart Core web solutions",
"autoload": {
"psr-4": { "": "src/" },
"classmap": [ "app/AppKernel.php", "app/AppCache.php" ]
},
"require": {
"php": "^7.0.7",
"symfony/symfony": "^3.2",
"symfony/assetic-bundle": "~2.0@dev",
"symfony/swiftmailer-bundle": "*",
"symfony/monolog-bundle": "*",
"sensio/distribution-bundle": "*",
"sensio/framework-extra-bundle": "*",
"sensio/generator-bundle": "*",
"twig/extensions": "~1.0",
"doctrine/orm": "~2.5",
"doctrine/doctrine-bundle": "~1.6",
"doctrine/doctrine-fixtures-bundle": "~2.0@dev",
"doctrine/doctrine-migrations-bundle": "^1.0",
"elao/web-profiler-extra-bundle": "~2.0@dev",
"incenteev/composer-parameter-handler": "~2.0",
"smart-core/accelerator-cache-bundle": "~1.0@dev",
"smart-core/ladybug-bundle": "~0.7"
},
"scripts": {
"init-scripts": [
"sh bin/init_var",
"sh bin/clear_cache"
],
"smart-core-scripts": [
"SmartCore\\Bundle\\AcceleratorCacheBundle\\Composer\\ScriptHandler::clearCache"
],
"symfony-scripts": [
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile"
],
"post-install-cmd": [
"@init-scripts",
"@symfony-scripts",
"@smart-core-scripts"
],
"post-update-cmd": [
"@init-scripts",
"@symfony-scripts",
"@smart-core-scripts"
]
},
"config": {
"bin-dir": "bin",
"component-dir": "web/bundles/components",
"preferred-install": "dist"
},
"extra": {
"symfony-app-dir": "app",
"symfony-bin-dir": "bin",
"symfony-var-dir": "var",
"symfony-web-dir": "web",
"symfony-tests-dir": "tests",
"symfony-assets-install": "symlink",
"branch-alias": {
"dev-master": "3.2-dev"
},
"incenteev-parameters": {
"file": "app/config/parameters.yml"
}
}
}