-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
54 lines (54 loc) · 1.52 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
{
"name": "mvlabs/prooph-skeleton",
"type": "project",
"authors": [
{
"name": "Marco Perone",
"email": "[email protected]"
},
{
"name": "Stefano Valle",
"email": "[email protected]"
}
],
"repositories": [
{
"url": "https://github.com/mvlabs/codingStandard.git",
"type": "git"
}
],
"require": {
"php": "7.1",
"prooph/event-sourcing": "^4.0",
"prooph/service-bus": "^5.2",
"prooph/event-store": "^6.5",
"zendframework/zend-servicemanager": "^3.2",
"zendframework/zend-stdlib": "^3.1",
"zendframework/zend-expressive": "^1.0",
"zendframework/zend-expressive-fastroute": "^1.3",
"filp/whoops": "^2.1",
"prooph/event-store-bus-bridge": "^2.0",
"prooph/event-store-doctrine-adapter": "^3.3",
"ramsey/uuid": "2.9",
"doctrine/migrations": "^1.5",
"roave/security-advisories": "dev-master",
"bernard/bernard": "1.0.*@dev",
"prooph/psb-bernard-producer": "^2.0",
"monolog/monolog": "^1.22"
},
"autoload": {
"psr-4": {
"MVLabs\\ProophSkeleton\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"MVLabs\\ProophSkeletonTest\\": ["test/unit/", "test/"]
}
},
"require-dev": {
"phpunit/phpunit": "^5.7",
"mockery/mockery": "^0.9.7",
"mvlabs/coding-standard": "dev-master"
}
}