-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathcomposer.json
36 lines (36 loc) · 933 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
{
"authors": [
{
"email": "cweiske@cweiske.de",
"name": "Christian Weiske",
"role": "Lead"
},
{
"email": "olle.jonsson@gmail.com",
"name": "Olle Jonsson",
"role": "Lead"
}
],
"autoload": {
"psr-0": {
"System_Launcher": "./"
}
},
"description": "Convenient wrapper for command-line invocation of 'open \"http://github.com\"' for Windows, OS X and Linux.",
"include-path": [
"./"
],
"license": "LGPL",
"name": "pear/system_launcher",
"support": {
"issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=System_Launcher",
"source": "https://github.com/pear/System_Launcher"
},
"type": "library",
"require": {
"pear/pear_exception": "*"
},
"require-dev": {
"phpunit/phpunit": "*"
}
}