-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
54 lines (54 loc) · 1.2 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
{
"name": "kakadu-dev/php-ijson-microservices",
"version": "1.2.2",
"description": "Package for create microservice architecture based on PHP.",
"homepage": "https://github.com/kakadu-dev/php-ijson-microservices",
"type": "library",
"keywords": [
"micro",
"microservice",
"php74",
"architicture",
"gateway",
"ijson",
"inverted",
"json"
],
"license": "MIT",
"authors": [
{
"name": "Yarmaliuk Mikhail",
"email": "lukomi@mail.ru",
"role": "Lead Software Developer"
}
],
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"require": {
"php": ">=7.4.0",
"guzzlehttp/guzzle": "^6.5"
},
"require-dev": {
},
"config": {
"process-timeout": 1800,
"fxp-asset": {
"enabled": false
},
"sort-packages": true
},
"autoload": {
"psr-4": {
"Kakadu\\Microservices\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Kakadu\\Microservices\\tests\\": "tests/"
}
}
}