This repository has been archived by the owner on Oct 7, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomposer.json
executable file
·73 lines (73 loc) · 1.9 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
{
"name": "caseboxdev/core-bundle",
"type": "symfony-bundle",
"description": "This bundle provides Casebox integration with Symfony CMF.",
"keywords": [
"casebox",
"symfony",
"core"
],
"homepage": "https://casebox.org",
"license": "AGPL3.0",
"authors": [
{
"name": "Oleg Burlaca",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Vitalie Turcanu",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Ghenadie Bulgac",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Vladimir Melnic",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^5.5|~7.0",
"symfony/symfony": "3.0.*",
"sensio/framework-extra-bundle": "~3.0",
"doctrine/orm": "^2.5",
"doctrine/doctrine-bundle": "^1.6",
"doctrine/doctrine-cache-bundle": "^1.2",
"symfony/swiftmailer-bundle": "^2.3",
"symfony/monolog-bundle": "^2.8",
"symfony/translation": "*",
"sensio/distribution-bundle": "^5.0",
"symfony/doctrine-bridge": "^3.0",
"sensio/generator-bundle": "^3.0",
"incenteev/composer-parameter-handler": "^2.0",
"predis/predis": "~1.0",
"php-curl-class/php-curl-class": "^3.5",
"league/oauth2-google": "^1.0.1",
"ezyang/htmlpurifier": "^4.7",
"php-imap/php-imap": "^2.0",
"sabre/dav": "3.2.0",
"mistic100/randomcolor": "1.0.3",
"reprovinci/solr-php-client": "1.0.3",
"mrclay/minify": "^2.2",
"kwi/urllinker": "@dev"
},
"suggest": {
"caseboxdev/rpc-bundle": "Add support for Casebox ExtJS UI and RPC API.",
"caseboxdev/rest-bundle": "Add support for Casebox REST API."
},
"autoload": {
"psr-4": {
"Casebox\\CoreBundle\\": "src/"
}
},
"scripts": {
"post-update-cmd": [
"Casebox\\CoreBundle\\Composer\\ScriptHandler::buildAssets"
]
}
}