-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
45 lines (45 loc) · 990 Bytes
/
composer.json
File metadata and controls
45 lines (45 loc) · 990 Bytes
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
{
"name": "viscaweb/licom-bundle",
"description": "Viscaweb licom bundle",
"type": "symfony-bundle",
"license": "proprietary",
"authors": [
{
"name": "Damien Gavard",
"email": "damien@viscaweb.com"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"viscaweb/doctrine-bundle" : "v1.0.2",
"viscaweb/core-bundle" : "dev-develop",
"beberlei/DoctrineExtensions" : "~1.0.9",
"ramsey/uuid": "3.4.*"
},
"repositories": [
{
"type": "vcs",
"url": "git@bitbucket.org:viscaweb/doctrine-bundle.git"
},
{
"type": "vcs",
"url": "git@bitbucket.org:viscaweb/core-bundle.git"
}
],
"autoload": {
"psr-4": {
"Visca\\Bundle\\LicomBundle\\": ""
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Unit\\": "tests/unit",
"Tests\\Functional\\": "tests/functional"
}
},
"require-dev": {
"phpunit/phpunit": "5.0.*",
"doctrine/orm": "~2.5"
}
}