-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
54 lines (54 loc) · 1.16 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": "proemergotech/correlate-php-core",
"description": "Core interface package for correlate id generation for microservices writen in PHP.",
"keywords": [
"microservice",
"uuid",
"dispatcher",
"log",
"correlate",
"laravel",
"lumen",
"psr-7",
"slim"
],
"type": "library",
"homepage": "https://github.com/proemergotech/correlate-php-core",
"license": "MIT",
"authors": [
{
"name": "ProEmergotech Kft",
"email": "[email protected]",
"homepage": "http://www.proemergotech.com/"
},
{
"name": "Soma Szelpal",
"email": "[email protected]"
},
{
"name": "Soma Szelpal",
"email": "[email protected]"
}
],
"require": {
"webpatser/laravel-uuid": "^2.0"
},
"require-dev": {
"fzaninotto/faker": "~1.4",
"phpunit/phpunit": "^5.0",
"mockery/mockery": "~0.9",
"squizlabs/php_codesniffer": "^2.8"
},
"autoload": {
"psr-4": {
"ProEmergotech\\Correlate\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ProEmergotech\\Correlate\\Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}