-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
44 lines (44 loc) · 1020 Bytes
/
composer.json
File metadata and controls
44 lines (44 loc) · 1020 Bytes
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
{
"name": "updevru/dkron-php-client",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Updevru\\Dkron\\": "src/",
"Updevru\\Dkron\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Ladygin Sergey"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=7.4.0||^8.0",
"ext-json": "*",
"psr/http-client-implementation": "^1.0",
"jms/serializer": "^3.17",
"ext-mbstring": "*",
"doctrine/annotations": "^2.0"
},
"require-dev": {
"nyholm/psr7": "^1.5",
"php-http/curl-client": "^2.2",
"phpunit/phpunit": "^9.5",
"php-http/mock-client": "^1.5"
},
"scripts": {
"tests": [
"@php vendor/bin/phpunit"
],
"code-fix": [
"@php php-cs-fixer-v3.phar fix"
]
},
"config": {
"allow-plugins": {
"php-http/discovery": true
}
}
}