-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
37 lines (36 loc) · 868 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
{
"name": "umlts/marcli",
"description": "Command Line Tools for MARC files",
"type": "project",
"minimum-stability": "dev",
"prefer-stable": true,
"authors": [
{
"name": "Waldemar Bartikowski",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Umlts\\Marcli\\": "src/"
}
},
"repositories": [
{
"type": "git",
"url": "https://github.com/bartikowskiw/marc_toolset"
},
{
"type": "git",
"url": "https://github.com/bartikowskiw/marc_reader"
}
],
"require": {
"umlts/marc_toolset": "^0.1",
"symfony/console": "^3.3"
},
"require-dev": {
"bamarni/symfony-console-autocomplete": "^1.2",
"phpunit/phpunit": "^7.4"
}
}