-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
47 lines (47 loc) · 1.24 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
{
"name": "68publishers/omni",
"description": "Awesome bundles for Nette framework based on DDD, CQRS and ES.",
"keywords": ["68publishers", "omni", "nette"],
"license": "MIT",
"authors": [
{
"name": "Tomáš Glawaty",
"email": "tomasglawaty@icloud.com"
}
],
"require": {
"php": "^7.4",
"ext-json": "*",
"fmasa/messenger": "dev-feature/handler-options as 2.0.0",
"nette/di": "^3.0.3",
"ramsey/uuid": "^4.1"
},
"require-dev": {
"68publishers/doctrine-bridge": "^0.2.1",
"doctrine/migrations": "^3.5",
"doctrine/orm": "^2.12",
"friendsofphp/php-cs-fixer": "^3.9",
"latte/latte": "^2.11",
"nette/application": "^3.1",
"nette/security": "^3.1",
"roave/security-advisories": "dev-latest"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/tg666/messenger"
}
],
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": {
"SixtyEightPublishers\\ArchitectureBundle\\": "src/ArchitectureBundle/",
"SixtyEightPublishers\\UserBundle\\": "src/UserBundle/",
"SixtyEightPublishers\\ForgotPasswordBundle\\": "src/ForgotPasswordBundle/",
"SixtyEightPublishers\\FlashMessageBundle\\": "src/FlashMessageBundle/",
"SixtyEightPublishers\\ProjectionBundle\\": "src/ProjectionBundle/"
}
}
}