forked from sumocoders/Framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
86 lines (83 loc) · 3.26 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
{
"name": "sumocoders/framework",
"license": "MIT",
"type": "project",
"description": "The Sumocoders framework based on Symfony",
"autoload": {
"psr-4": {
"": "src/"
},
"classmap": [
"app/AppKernel.php",
"app/AppCache.php"
]
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^5.5 || ^7.0",
"symfony/symfony": "^2.8",
"symfony/framework-bundle": "^2.8",
"doctrine/orm": "^2.5",
"doctrine/doctrine-bundle": "^1.6",
"doctrine/migrations": "^1.4",
"doctrine/doctrine-migrations-bundle": "^1.1",
"twig/extensions": "^1.3",
"symfony/swiftmailer-bundle": "^2.3",
"symfony/monolog-bundle": "^2.8",
"sensio/distribution-bundle": "^5.0",
"sensio/framework-extra-bundle": "^3.0",
"incenteev/composer-parameter-handler": "^2.1",
"friendsofsymfony/user-bundle": "2.0.x-dev",
"mopa/bootstrap-bundle": "^3.0",
"jms/i18n-routing-bundle": "^2.0",
"jms/translation-bundle": "^1.1",
"knplabs/knp-menu-bundle": "^2.1",
"tijsverkoyen/css-to-inline-styles": "^2.0",
"jms/di-extra-bundle": "^1.7",
"sumocoders/framework-error-bundle": "^3.0",
"sumocoders/framework-user-bundle": "^3.0",
"sumocoders/framework-search-bundle": "^3.0",
"sumocoders/framework-example-bundle": "^4.0"
},
"require-dev": {
"composer/composer": "1.0.*@dev",
"sensio/generator-bundle": "^3.0",
"doctrine/doctrine-fixtures-bundle": "^2.3",
"fzaninotto/faker": "^1.5",
"symfony/phpunit-bridge": "^3.0",
"phpunit/phpunit": "^5.2 || ^4.8"
},
"scripts": {
"post-install-cmd": [
"SumoCoders\\FrameworkCoreBundle\\Composer\\ScriptHandler::createInitialConfig",
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
"SumoCoders\\FrameworkCoreBundle\\Composer\\ScriptHandler::installNPM",
"SumoCoders\\FrameworkCoreBundle\\Composer\\ScriptHandler::installBower",
"SumoCoders\\FrameworkCoreBundle\\Composer\\ScriptHandler::gulpBuild"
],
"post-update-cmd": [
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
"SumoCoders\\FrameworkCoreBundle\\Composer\\ScriptHandler::installNPM",
"SumoCoders\\FrameworkCoreBundle\\Composer\\ScriptHandler::installBower",
"SumoCoders\\FrameworkCoreBundle\\Composer\\ScriptHandler::gulpBuild"
],
"post-travis": [
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap"
]
},
"config": {
"bin-dir": "bin"
},
"extra": {
"symfony-app-dir": "app",
"symfony-web-dir": "web",
"incenteev-parameters": {
"file": "app/config/parameters.yml"
}
}
}