-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathcomposer.json
More file actions
82 lines (82 loc) · 3.43 KB
/
composer.json
File metadata and controls
82 lines (82 loc) · 3.43 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
79
80
81
82
{
"name": "polypodes/SimpleDMS",
"license": "MIT",
"type": "app",
"description": "Simple Google Drive based document management system",
"autoload": {
"psr-0": { "": "src/", "SymfonyStandard": "app/" }
},
"require": {
"php": ">=5.3.3",
"symfony/symfony": "2.5.*",
"twig/extensions": "~1.0",
"symfony/assetic-bundle": "~2.3",
"symfony/swiftmailer-bundle": "~2.3",
"symfony/monolog-bundle": "~2.4",
"sensio/distribution-bundle": "~3.0",
"sensio/framework-extra-bundle": "~3.0",
"incenteev/composer-parameter-handler": "~2.0",
"google/apiclient": "1.1.x-dev",
"hwi/oauth-bundle": "0.4.*@dev",
"incenteev/composer-parameter-handler": "~2.0",
"sensio/generator-bundle": "~2.3"
},
"require-dev": {
"heroku/heroku-buildpack-php": "*",
"phpunit/phpunit": "~3.7",
"squizlabs/php_codesniffer": "~2.2",
"sebastian/phpcpd": "*",
"phploc/phploc" : "*",
"phpmd/phpmd" : "2.0.*",
"pdepend/pdepend" : "2.0.*",
"fabpot/php-cs-fixer": "@stable",
"fzaninotto/faker": "1.5.x-dev",
"phpoffice/phpword": "~0.12"
},
"scripts": {
"post-root-package-install": [
"SymfonyStandard\\Composer::hookRootPackageInstall"
],
"post-install-cmd": [
"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::installRequirementsFile",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::removeSymfonyStandardFiles"
],
"post-update-cmd": [
"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::installRequirementsFile",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::removeSymfonyStandardFiles"
]
},
"config": {
"bin-dir": "bin"
},
"extra": {
"symfony-app-dir": "app",
"symfony-web-dir": "web",
"branch-alias": {
"dev-master": "2.5-dev"
},
"incenteev-parameters": {
"file": "app/config/parameters.yml",
"env-map": {
"github_client_id": "GITHUB_CLIENT_ID",
"github_client_secreet": "GITHUB_CLIENT_SECRET"
}
},
"heroku": {
"document-root": "web",
"php-config": [
"date.timezone=Europe/Amsterdam",
"display_errors=off",
"short_open_tag=off"
]
}
}
}