-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
46 lines (38 loc) · 904 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
42
43
44
45
46
{
"name": "d4m/terminal-notifier",
"type": "library",
"description": "Terminal Notifier OSX",
"keywords": ["notifier", "osx"],
"license": "MIT",
"homepage": "http://www.dev4media.pe",
"authors": [
{
"name": "Dev4Media",
"homepage": "http://www.dev4media.pe"
},
{
"name": "Raul Rodriguez",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.3.3",
"symfony/console": "~2.1"
},
"require-dev": {
"phpspec/phpspec": "2.0.*@dev"
},
"autoload": {
"psr-0": { "D4m": "src/" }
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
},
"config": {
"bin-dir": "bin"
},
"bin": ["bin/phpspec"],
"minimum-stability": "dev"
}