-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
52 lines (52 loc) · 1.4 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
{
"name": "friendsofouro/geteventstore-bundle",
"description": "GetEventStore integration for Symfony 2",
"type": "symfony-bundle",
"keywords": [
"cqrs",
"eventsourcing"
],
"license": "MIT",
"authors": [
{
"name": "Davide Bellettini",
"email": "[email protected]",
"homepage": "http://davidebellettini.com/"
},
{
"name": "Nicolò Pignatelli",
"email": "[email protected]",
"homepage": "http://nicolopignatelli.me/"
},
{
"name": "Contributors",
"homepage": "https://github.com/FriendsOfOuro/geteventstore-bundle/graphs/contributors"
}
],
"replace": {
"dbellettini/eventstore-client-bundle": "self.version",
"friendsofouro/eventstore-client-bundle": "self.version"
},
"require": {
"symfony/framework-bundle": "~2.8|~3.0",
"friendsofouro/geteventstore": "~0.1",
"friendsofouro/geteventstore-core": "~0.9"
},
"require-dev": {
"phpunit/phpunit": ">=3.7.0"
},
"config": {
"bin-dir": "bin"
},
"autoload": {
"psr-0": {
"EventStore\\Bundle\\ClientBundle": ""
}
},
"target-dir": "EventStore/Bundle/ClientBundle",
"extra": {
"branch-alias": {
"dev-master": "0.3.x-dev"
}
}
}