-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
51 lines (51 loc) · 1.23 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
{
"name": "atlas/ddd-to-the-moon-and-back",
"description": "A sample application built for the talk \"DDD to the moon and back\"",
"type": "project",
"authors": [
{
"name": "Marcelo Teixeira dos Santos",
"email": "[email protected]"
}
],
"config": {
"platform": {
"php": "7.3.2"
},
"preferred-install": "dist",
"prepend-autoloader": false,
"optimize-autoloader": true
},
"scripts": {
},
"require": {
"glance-project/fence": "dev-master",
"php-di/php-di": "^6.0",
"symfony/routing": "^5.3",
"pecee/simple-router": "^4.3",
"ramsey/uuid": "^4.1",
"predis/predis": "^1.1",
"league/period": "^4.11"
},
"require-dev": {
"phpunit/phpunit": "^8",
"phpstan/phpstan": "^0.12.19",
"guzzle/guzzle": "^3.9"
},
"repositories": [
{
"type": "vcs",
"url": "https://gitlab.cern.ch/fence/fence.git"
}
],
"autoload": {
"psr-4": {
"Atlas\\DDD\\": "source"
}
},
"autoload-dev": {
"psr-4": {
"Atlas\\DDD\\Tests\\": "tests"
}
}
}