-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
53 lines (53 loc) · 1.54 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
{
"name": "lezhnev74/ema",
"description": "External memory app - allows one to quickly post and search text notes",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "Dmitriy Lezhnev",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"require": {
"php": "^7.1",
"beberlei/assert": "^2.7",
"nesbot/carbon": "^1.22",
"ramsey/uuid": "^3.6",
"doctrine/collections": "^1.4",
"voku/portable-utf8": "^3.1",
"php-di/php-di": "^5.4",
"vlucas/phpdotenv": "^2.4",
"doctrine/cache": "^1.6",
"lezhnev74/dummy-config-loader": "^1.0",
"prooph/service-bus": "^6.0",
"lezhnev74/prooph-direct-router": "^1.0",
"doctrine/dbal": "^2.5",
"doctrine/migrations": "^1.5",
"sandrokeil/interop-config": "^2.1",
"slim/slim": "^3.0",
"lcobucci/jwt": "^3.2",
"react/promise": "^2.5",
"monolog/monolog": "^1.22",
"google/apiclient": "^2.1",
"guzzlehttp/guzzle": "~6.0"
},
"autoload": {
"psr-4": {
"EMA\\Domain\\": "src/Domain/",
"EMA\\App\\": "src/App/",
"EMA\\Infrastructure\\": "src/Infrastructure/",
"EMA\\Tests\\": "tests/"
}
},
"require-dev": {
"phpunit/phpunit": "^6.1",
"lezhnev74/ddd-generator": "^0.0.4",
"fzaninotto/faker": "^1.6",
"symfony/var-dumper": "^3.2"
},
"config": {
"bin-dir": "bin"
}
}