forked from CodelyTV/php-ddd-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
93 lines (80 loc) · 2.49 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "codelytv/cqrs-ddd-example",
"license": "MIT",
"type": "project",
"description": "A simple skeleton for CQRS code :)",
"require": {
"php": "7.3.6",
"ext-amqp": "*",
"ext-apcu": "*",
"ext-bcmath": "*",
"ext-ctype": "*",
"ext-intl": "*",
"ext-json": "*",
"ext-zend-opcache": "*",
"ext-pdo": "*",
"incenteev/composer-parameter-handler": "^2.1",
"symfony/framework-bundle": "^4.2",
"symfony/console": "^4.2",
"symfony/process": "^4.2",
"symfony/messenger": "^4.2",
"symfony/monolog-bundle": "^3.3",
"symfony/dotenv": "^4.2",
"friendsofsymfony/rest-bundle": "^2.4",
"jms/serializer-bundle": "^2.4",
"symfony/twig-bundle": "^4.2",
"ocramius/proxy-manager": "2.2.*",
"doctrine/dbal": "^2.8",
"doctrine/orm": "^2.6",
"lambdish/phunctional": "^1.0",
"swiftmailer/swiftmailer": "^5.4",
"maknz/slack": "^1.7",
"ramsey/uuid": "^3.8"
},
"require-dev": {
"ext-xdebug": "*",
"roave/security-advisories": "dev-master",
"phpunit/phpunit": "^6.5",
"symfony/phpunit-bridge": "^4.2",
"mockery/mockery": "^1.0",
"fzaninotto/faker": "^1.7",
"squizlabs/php_codesniffer": "^2.9",
"behat/behat": "^3.4",
"behat/mink-extension": "^2.3",
"behat/mink-browserkit-driver": "^1.3",
"friends-of-behat/symfony-extension": "^2.0",
"phpstan/phpstan": "^0.10.3",
"phpstan/phpstan-mockery": "^0.10.2"
},
"scripts": {
"post-install-cmd": ["Incenteev\\ParameterHandler\\ScriptHandler::buildParameters"],
"post-update-cmd": ["Incenteev\\ParameterHandler\\ScriptHandler::buildParameters"],
"behat": "behat -p api && behat -p applications",
"phpunit": "phpunit --exclude-group='disabled'",
"phpstan": "phpstan analyse -l 7 -c etc/phpstan/phpstan.neon applications/api/src applications/codely/src --quiet",
"test": ["@phpstan", "@phpunit", "@behat"]
},
"extra": {
"incenteev-parameters": [
{ "file": "src/Shared/Infrastructure/Symfony/Bundle/DependencyInjection/Resources/infrastructure_parameters.yml"},
{ "file": "src/Mooc/Shared/Infrastructure/Symfony/Bundle/DependencyInjection/Resources/mooc_parameters.yml"}
]
},
"autoload": {
"psr-4": {
"CodelyTv\\MoocBackend\\": "applications/mooc_backend/src",
"CodelyTv\\": ["src"]
},
"files": [
"src/Shared/utils.php"
]
},
"autoload-dev": {
"psr-4": {
"CodelyTv\\Test\\": "tests/src"
},
"files": [
"tests/src/Shared/utils.php"
]
}
}