-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
33 lines (33 loc) · 788 Bytes
/
composer.json
File metadata and controls
33 lines (33 loc) · 788 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
{
"name": "webdevvie/pushover-bundle",
"description": "A symfony2 bundle for pushover",
"keywords": ["symfony2", "pushover", "bundle"],
"license": "Apache-2.0",
"authors": [
{
"name": "John Bakker",
"email": "me@johnbakker.name",
"homepage": "http://www.johnbakker.name"
}
],
"type": "symfony-bundle",
"minimum-stability": "dev",
"require": {
"php": ">=5.3.0",
"guzzle/guzzle": "~3.7"
},
"require-dev": {
"phpunit/phpunit": "3.7.*",
"squizlabs/php_codesniffer": "~1.4",
"phpmd/phpmd": "~1.5",
"pdepend/pdepend": "~1.1",
"mockery/mockery": "dev-master"
},
"config": {
"bin-dir": "bin"
},
"autoload": {
"psr-0": { "Webdevvie\\PushoverBundle": "" }
},
"target-dir": "Webdevvie/PushoverBundle"
}