-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
41 lines (41 loc) · 979 Bytes
/
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
{
"name": "heybigname/event-dispatcher",
"version": "1.1.2",
"description": "Event Dispatcher with a focus on Domain Events",
"license": "MIT",
"authors": [
{
"name": "Mitchell van Wijngaarden",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.4.0",
"illuminate/container": "~4.2"
},
"require-dev": {
"phpspec/phpspec": "~2.0",
"henrikbjorn/phpspec-code-coverage" : "1.0.*",
"satooshi/php-coveralls": "~0.6",
"laravel/framework": "~4.2"
},
"autoload": {
"psr-4": {
"BigName\\EventDispatcher\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"BigName\\EventDispatcher\\Stubs\\": "spec/stubs/"
}
},
"config": {
"bin-dir": "bin"
},
"extra": {
"branch-alias": {
"dev-master": "1.1-dev"
}
},
"minimum-stability": "dev"
}