-
Notifications
You must be signed in to change notification settings - Fork 10
/
composer.json
45 lines (45 loc) · 1.1 KB
/
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
{
"authors": [
{
"email": "[email protected]",
"name": "Carsten Lucke",
"role": "Lead"
},
{
"email": "[email protected]",
"name": "Ken Guest",
"role": "Lead"
},
{
"email": "[email protected]",
"name": "Stephan Schmidt",
"role": "Developer"
}
],
"autoload": {
"psr-0": {
"Date": "./"
}
},
"description": "More info available on: http://pear.php.net/package/Date_Holidays",
"include-path": [
"./"
],
"license": "PHP-3.01",
"name": "pear/date_holidays",
"support": {
"issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Date_Holidays",
"source": "https://github.com/pear/Date_Holidays"
},
"type": "library",
"require": {
"pear/pear_exception": "*",
"pear/pear": "*"
},
"require-dev": {
"phpunit/phpunit": "*"
},
"suggest": {
"pear/console_getargs": "Install optionally via your project's composer.json"
}
}