forked from CodelyTV/php-ddd-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
83 lines (70 loc) · 2.05 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
{
"name": "codelytv/ddd-skeleton",
"license": "MIT",
"type": "project",
"description": "DDD php Skeleton - Monorepository",
"repositories": [
{
"type": "vcs",
"url": "https://github.com/Behat/Behat",
"comment": "Waiting for new tag"
},
{
"type": "vcs",
"url": "https://github.com/DonCallisto/MinkExtension",
"comment": "Waiting for https://github.com/Behat/MinkExtension/pull/355"
},
{
"type": "vcs",
"url": "https://github.com/ruudk/MinkBrowserKitDriver",
"comment": "Waiting for https://github.com/minkphp/Mink/issues/787 and then a new release"
}
],
"require": {
"php": "7.4",
"ext-amqp": "*",
"ext-apcu": "*",
"ext-json": "*",
"ext-zend-opcache": "*",
"ext-pdo": "*",
"symfony/framework-bundle": "^5.0",
"symfony/messenger": "^5.0",
"symfony/dotenv": "^5.0",
"symfony/yaml": "^5.0",
"symfony/twig-bundle": "^5.0",
"symfony/validator": "^5.0",
"lambdish/phunctional": "^2.0",
"ramsey/uuid": "^3.8",
"doctrine/dbal": "^2.9",
"doctrine/orm": "^2.6",
"ocramius/proxy-manager": "^2.6",
"elasticsearch/elasticsearch": "^7.3",
"monolog/monolog": "^2.0"
},
"require-dev": {
"ext-xdebug": "*",
"roave/security-advisories": "dev-master",
"behat/behat": "dev-master as 3.6",
"behat/mink-extension": "dev-patch-4",
"behat/mink-browserkit-driver": "dev-symfony-5",
"friends-of-behat/symfony-extension": "2.1.0-BETA.1",
"phpunit/phpunit": "^8.5",
"mockery/mockery": "^1.2",
"fzaninotto/faker": "^1.8",
"symfony/debug": "^4.4"
},
"autoload": {
"psr-4": {
"CodelyTv\\Apps\\Mooc\\Backend\\": "apps/mooc/backend/src",
"CodelyTv\\Apps\\Mooc\\Frontend\\": "apps/mooc/frontend/src",
"CodelyTv\\Apps\\Backoffice\\Backend\\": "apps/backoffice/backend/src",
"CodelyTv\\Apps\\Backoffice\\Frontend\\": "apps/backoffice/frontend/src",
"CodelyTv\\": ["src"]
}
},
"autoload-dev": {
"psr-4": {
"CodelyTv\\Tests\\": ["tests/src"]
}
}
}