-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
48 lines (48 loc) · 1.15 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
46
47
48
{
"name": "biblibre/omeka-cli",
"description": "Omeka CLI",
"type": "project",
"keywords": ["omeka"],
"homepage": "https://github.com/biblibre/omeka-cli",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Julian Maurice",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/biblibre/omeka-cli/issues"
},
"require": {
"ext-zip": "*",
"ext-pdo": "*",
"ext-pdo_mysql": "*",
"knplabs/github-api": "^2.0",
"php-http/guzzle6-adapter": "^1.1",
"cache/filesystem-adapter": "^1.0",
"guzzlehttp/guzzle": "^6.3",
"symfony/console": "^3.3",
"opis/closure": "^3.5"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.6",
"phpunit/phpunit": "^8"
},
"autoload": {
"psr-4": {
"OmekaCli\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"OmekaCli\\Test\\": "tests/OmekaCli/Test/"
}
},
"config": {
"platform": {
"php": "7.2"
}
},
"bin": ["bin/omeka-cli"]
}