-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
55 lines (55 loc) · 1.08 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
49
50
51
52
53
54
55
{
"name": "stefanak-michal/deepr-php",
"description": "API library following Deepr specification",
"keywords": [
"deepr",
"php",
"api",
"rpc"
],
"homepage": "https://github.com/stefanak-michal/deepr-php",
"type": "library",
"readme": "README.md",
"license": "MIT",
"minimum-stability": "stable",
"require": {
"php": ">=7.2.0",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": ">=7.5.0"
},
"support": {
"issues": "https://github.com/stefanak-michal/deepr-php/issues",
"source": "https://github.com/stefanak-michal/deepr-php"
},
"funding": [
{
"type": "ko-fi",
"url": "https://ko-fi.com/michalstefanak"
}
],
"authors": [
{
"name": "Michal Stefanak",
"role": "Developer",
"homepage": "https://www.linkedin.com/in/michalstefanak/"
}
],
"autoload": {
"psr-4": {
"Deepr\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Deepr\\tests\\": "tests/"
}
},
"scripts": {
"test": [
"Composer\\Config::disableProcessTimeout",
"phpunit"
]
}
}