forked from scriptotek/php-marc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
34 lines (34 loc) · 810 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
{
"name": "scriptotek/marc",
"type": "library",
"description": "Simple interface to parsing MARC records using File_MARC",
"keywords": ["marc"],
"license": "MIT",
"authors": [
{
"name": "Dan Michael O. Heggø",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.0",
"ext-xml": "*",
"ext-json": "*",
"ext-simplexml": "*",
"ck/file_marc_reference": "^1.2",
"pear/file_marc": "@dev"
},
"require-dev": {
"phpunit/phpunit": "^8.0 | ^9.0",
"squizlabs/php_codesniffer": "^3.3"
},
"autoload": {
"psr-4": {
"Scriptotek\\Marc\\": "src/",
"Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit"
}
}