-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
51 lines (51 loc) · 1.15 KB
/
composer.json
File metadata and controls
51 lines (51 loc) · 1.15 KB
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
49
50
51
{
"name": "cottagelabs/coarnotify",
"description": "A library which provides full support for the COAR Notify protocol, including a full set of pattern objects, a client to send notifications, and a server-side interface to enable rapid inbox implementation in arbitrary web frameworks.",
"type": "library",
"version": "1.0.1.1",
"authors": [
{
"name": "Hrafn Malmquist",
"email": "[email protected]"
},
{
"name": "Raphaël Tournoy",
"email": "[email protected]"
},
{
"name": "Richard Jones",
"email": "[email protected]"
}
],
"license": "MIT",
"require": {
"php": ">=8.0",
"ext-json": "*",
"ramsey/uuid": "^4.2",
"ext-curl": "*",
"doctrine/annotations": "^1.13",
"guzzlehttp/guzzle": "^7.5"
},
"autoload": {
"psr-4": {
"coarnotify\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"keywords": ["linked-data", "repository", "open access", "publishing", "peer-review"],
"require-dev": {
"phpunit/phpunit": "^9",
"slim/slim": "^4.0",
"slim/psr7": "^1.0",
"monolog/monolog": "^2.0"
},
"config": {
"allow-plugins": {
"php-http/discovery": true
}
}
}