-
Notifications
You must be signed in to change notification settings - Fork 16
/
composer.json
42 lines (42 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
{
"authors": [
{
"email": "[email protected]",
"name": "Dan Scott",
"role": "Lead",
"homepage": "https://coffeecode.net"
}
],
"autoload": {
"psr-0": {
"File": "./"
},
"classmap": [
"./File/MARC/Data_Field.php",
"./File/MARC/Control_Field.php"
]
},
"description": "Supports the MAchine Readable Cataloging (MARC) file format documented at http://loc.gov/marc/",
"include-path": [
"./"
],
"license": "LGPL-2.1",
"name": "pear/file_marc",
"support": {
"issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=File_MARC",
"source": "https://github.com/pear/File_MARC"
},
"type": "library",
"require": {
"pear/pear_exception": "1.*"
},
"require-dev": {
"phpunit/phpunit": "*",
"squizlabs/php_codesniffer": "*"
},
"suggest": {
"pear/validate_ispn": "Install optionally via your project's composer.json"
},
"minimum-stability": "dev",
"prefer-stable": true
}