-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
48 lines (48 loc) · 1.21 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
{
"name": "pgrau/task",
"license": "proprietary",
"type": "project",
"description": "An example project applying Ports and Adapters, DDD, CQRS & Event Driven Architecture in PHP ",
"authors": [
{
"name": "Pau Ferran Grau",
"email": "pau.ferran.grau@gmail.com",
"homepage": "https://github.com/pgrau"
}
],
"require": {
"php": "^7.4",
"ramsey/uuid": "^3.9",
"monolog/monolog": "^2.1",
"symfony/console": "^5.1",
"league/container": "^3.3",
"doctrine/dbal": "^2.11",
"symfony/dotenv": "^5.1",
"league/tactician": "^1.0",
"league/tactician-container": "^2.0",
"league/tactician-doctrine": "^1.1",
"webmozart/assert": "^1.9"
},
"require-dev": {
"phpunit/phpunit": "^9.4",
"phpstan/phpstan": "^0.12.51",
"squizlabs/php_codesniffer": "^3.5"
},
"autoload": {
"psr-4": {
"Project\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Project\\Test\\": "tests/"
}
},
"scripts": {
"phpstan": "./vendor/bin/phpstan analyse --memory-limit=4000M",
"phpcbf": "./vendor/bin/phpcbf -v src tests",
"phpunit": "./vendor/bin/phpunit --color=always"
},
"minimum-stability": "stable",
"prefer-stable": true
}