-
Notifications
You must be signed in to change notification settings - Fork 11
/
composer.json
35 lines (33 loc) · 1011 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
{
"name": "egulias/listeners-debug-command-bundle",
"description": "Symfony 2 console command to debug listeners",
"homepage": "https://github.com/egulias/ListenersDebugCommandBundle.git",
"type": "symfony-bundle",
"keywords": ["listener", "events"],
"license": "MIT",
"authors": [
{
"name": "Eduardo Gulias Davis",
"homepage": "http://egulias.com"
}
],
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev"
}
},
"require": {
"symfony/http-kernel": "~2.3",
"symfony/dependency-injection": "~2.3",
"symfony/console": "~2.3",
"symfony/framework-bundle": "~2.3",
"egulias/listeners-debug": "1.0.*"
},
"require-dev": {
"phpunit/phpunit": ">=3.7",
"satooshi/php-coveralls": "dev-master"
},
"autoload": {
"psr-4": { "Egulias\\ListenersDebugCommandBundle\\": "" }
}
}