-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
55 lines (55 loc) · 2 KB
/
composer.json
File metadata and controls
55 lines (55 loc) · 2 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
{
"require": {
"symfony/symfony": "^3.0",
"sensio/framework-extra-bundle": "^3.0",
"friendsofsymfony/rest-bundle": "^1.7",
"doctrine/orm": "2.5.*",
"doctrine/doctrine-bundle": "~1.6",
"jms/serializer-bundle": "1.1.*",
"sensio/generator-bundle": "^3.0",
"sensio/distribution-bundle": "5.0.*",
"incenteev/composer-parameter-handler": "^2.0",
"friendsofsymfony/oauth-server-bundle": "1.5.*",
"guzzlehttp/guzzle": "6.1.*",
"symfony/psr-http-message-bridge": "^0.2.0",
"zendframework/zend-diactoros": "^1.3"
},
"require-dev": {
"phpunit/phpunit": "5.1",
"mockery/mockery": "^0.9.4"
},
"autoload": {
"psr-4": {
"CloudPOS\\Component\\": "src/CloudPOS/Component/",
"CloudPOS\\Bundle\\": "src/CloudPOS/Bundle/"
},
"classmap": [
"app/AppKernel.php"
]
},
"scripts": {
"post-install-cmd": [
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::prepareDeploymentTarget"
],
"post-update-cmd": [
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::prepareDeploymentTarget"
]
},
"extra": {
"symfony-app-dir": "app",
"symfony-bin-dir": "bin",
"symfony-web-dir": "web",
"symfony-var-dir": "var",
"incenteev-parameters": {
"file": "app/config/parameters.yml"
}
}
}