forked from camdram/camdram
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
104 lines (104 loc) · 3.2 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
{
"name" : "camdram/camdram",
"description" : "Camdram - The portal website for student theatre in Cambridge",
"autoload" : {
"psr-4" : {
"" : "src/"
},
"classmap" : [
"app/AppKernel.php",
"app/AppCache.php"
]
},
"autoload-dev": {
"psr-4": {
"Camdram\\Tests\\": "tests/"
}
},
"license" : "GPL-2.0",
"require" : {
"php": ">=7.0.0",
"abraham/twitteroauth": "^0.9",
"doctrine/doctrine-bundle": "^1.9",
"doctrine/doctrine-fixtures-bundle": "~3.0",
"doctrine/doctrine-migrations-bundle": "1.3.*",
"doctrine/orm": "^2.5",
"egeloen/google-map-bundle": "^3.0",
"excelwebzone/recaptcha-bundle": "^1.5",
"facebook/graph-sdk": "^5.6",
"friendsofsymfony/elastica-bundle": "^5.0",
"friendsofsymfony/jsrouting-bundle": "2.2.*",
"friendsofsymfony/oauth-server-bundle": "^1.6",
"friendsofsymfony/rest-bundle": "^2.3",
"hwi/oauth-bundle": "^0.6",
"incenteev/composer-parameter-handler": "^2.1",
"jms/serializer-bundle": "^2.4",
"knplabs/github-api": "^2.8",
"liip/imagine-bundle": "~1.9",
"oneup/uploader-bundle": "^2.0",
"pagerfanta/pagerfanta": "1.1.*",
"php-http/guzzle6-adapter": "^1.1",
"php-http/httplug-bundle": "^1.10",
"sabre/vobject": "~4.1",
"sensio/distribution-bundle": "^5.0",
"sensio/framework-extra-bundle": "^5.2",
"sentry/sentry-symfony": "^1.0",
"stof/doctrine-extensions-bundle": "1.3.*",
"symfony/monolog-bundle": "^3.3",
"symfony/swiftmailer-bundle": "^3.2.2",
"symfony/symfony": "3.4.*",
"twig/extensions": "~1.5",
"twig/twig": "^1.0||^2.0",
"zendframework/zend-feed": "2.10.*"
},
"require-dev" : {
"behat/behat": "3.5.*",
"behat/mink": "^1.7",
"behat/mink-extension": "^2.3",
"behat/mink-goutte-driver": "*",
"behat/symfony2-extension": "^2.1",
"dama/doctrine-test-bundle": "^4.0",
"sensio/generator-bundle": "^3.1",
"symfony/phpunit-bridge": "^4.1",
"symfony/web-server-bundle": "^3.4"
},
"scripts" : {
"post-create-project-cmd": [
"Acts\\CamdramAdminBundle\\Composer\\ScriptHandler::refreshDatabase",
"Acts\\CamdramAdminBundle\\Composer\\ScriptHandler::downloadAssets",
"Acts\\CamdramAdminBundle\\Composer\\ScriptHandler::welcomeMessage"
],
"symfony-scripts": [
"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-install-cmd": [
"@symfony-scripts"
],
"post-update-cmd": [
"@symfony-scripts"
]
},
"minimum-stability" : "stable",
"extra" : {
"symfony-app-dir" : "app",
"symfony-web-dir" : "web",
"symfony-bin-dir": "bin",
"symfony-var-dir": "var",
"symfony-tests-dir": "tests",
"incenteev-parameters" : {
"file" : "app/config/parameters.yml"
},
"symfony-assets-install" : "relative"
},
"config" : {
"bin-dir" : "bin/",
"platform": {
"php": "7.0.30"
},
"sort-packages": true
}
}