-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
executable file
·106 lines (106 loc) · 3.59 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
101
102
103
104
105
106
{
"require": {
"php": "^7.1",
"ajgl/simple-bus-query-bus": "^0.1.0",
"bengor-user/doctrine-orm-bridge-bundle": "^1.2.0",
"bengor-user/simple-bus-bridge-bundle": "^1.0.1",
"bengor-user/swift-mailer-bridge-bundle": "^1.0.1",
"bengor-user/symfony-routing-bridge-bundle": "^1.1",
"bengor-user/symfony-security-bridge-bundle": "^1.0.1",
"bengor-user/twig-bridge-bundle": "^1.0.1",
"bengor-user/user-bundle": "^0.8.5",
"doctrine/doctrine-bundle": "^1.6",
"doctrine/doctrine-cache-bundle": "^1.2",
"doctrine/doctrine-migrations-bundle": "^1.2",
"doctrine/orm": "^2.5",
"facebook/graph-sdk": "^5.6",
"incenteev/composer-parameter-handler": "^2.0",
"league/oauth2-facebook": "^2.0",
"lexik/jwt-authentication-bundle": "^2.4",
"lin3s/distribution": "^4.3",
"lin3s/shared-kernel": "^0.6.0",
"sensio/distribution-bundle": "^5.0",
"sensio/framework-extra-bundle": "^3.0.2",
"smart-core/accelerator-cache-bundle": "^1.2",
"symfony/monolog-bundle": "^2.8",
"symfony/polyfill-apcu": "^1.0",
"symfony/swiftmailer-bundle": "^2.3",
"symfony/symfony": "3.3.*"
},
"require-dev": {
"behat/behat": "^3.4",
"lin3s/cs": "^0.6",
"phpspec/phpspec": "^3.2"
},
"scripts": {
"symfony-scripts": [
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::prepareDeploymentTarget"
],
"lin3scs-scripts": [
"LIN3S\\CS\\Composer\\Hooks::buildDistFile",
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
"LIN3S\\CS\\Composer\\Hooks::addHooks",
"LIN3S\\CS\\Composer\\Hooks::addFiles"
],
"cs": [
"php-cs-fixer fix --config-file=.php_cs",
"php-cs-fixer fix --config-file=.phpspec_cs"
],
"test": "phpspec run",
"post-install-cmd": [
"@symfony-scripts"
],
"post-update-cmd": [
"@symfony-scripts"
]
},
"autoload": {
"psr-4": {
"Session\\": "src/"
},
"exclude-from-classmap": [
"/Tests/",
"/test/",
"/tests/"
]
},
"autoload-dev": {
"psr-4": {
"Spec\\": "tests/Spec",
"Behat\\": "tests/Behat"
}
},
"config": {
"sort-packages": true
},
"extra": {
"symfony-app-dir": "src/Infrastructure/Symfony/Framework",
"symfony-bin-dir": "src/Infrastructure/Ui/Cli/Symfony/",
"symfony-var-dir": "var",
"symfony-web-dir": "src/Infrastructure/Ui/Http/Symfony/",
"symfony-tests-dir": "tests",
"symfony-assets-install": "relative",
"incenteev-parameters": [
{
"file": "parameters.yml",
"dist-file": "parameters.yml.dist"
},
{
"file": ".lin3s_cs.yml",
"dist-file": ".lin3s_cs.yml.dist"
}
],
"scripts-dev": {
"post-install-cmd": [
"@lin3scs-scripts"
],
"post-update-cmd": [
"@lin3scs-scripts"
]
}
}
}