-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
36 lines (36 loc) · 766 Bytes
/
composer.json
File metadata and controls
36 lines (36 loc) · 766 Bytes
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
{
"name": "jonataa/realworld-ddd",
"description": "A realworld.io project using the concepts of Domain Driven Design and Hexagonal Architecture.",
"authors": [
{
"name": "Jonata Weber",
"email": "jonataa@gmail.com"
}
],
"scripts": {
"phpunit": "phpunit tests --colors",
"phpstan": "phpstan analyse --level 7 src",
"test": ["@phpunit", "@phpstan"]
},
"autoload": {
"psr-4": {
"RealWorld\\": "src/RealWorld"
},
"files": [
"src/Shared/utils.php"
]
},
"autoload-dev": {
"psr-4": {
"Test\\": "tests/"
}
},
"require": {
"lambdish/phunctional": "^1.0",
"ramsey/uuid": "^3.8"
},
"require-dev": {
"phpunit/phpunit": "^7.4",
"phpstan/phpstan": "^0.10.5"
}
}