forked from nicwortel/command-pipeline
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
49 lines (49 loc) · 1.55 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
{
"name": "nicwortel/command-pipeline",
"type": "library",
"description": "A command pipeline for PHP",
"license": "MIT",
"require": {
"php": "^7.4 || ^8.0",
"beberlei/assert": "^2.1 || ^3.0",
"doctrine/doctrine-bundle": "^1.11 || ^2.0",
"doctrine/orm": "^2.6.3",
"psr/log": "^1.1",
"simple-bus/message-bus": "^6.0",
"simple-bus/symfony-bridge": "^6.0",
"symfony/config": "^4.0 || ^5.0",
"symfony/dependency-injection": "^4.0 || ^5.0",
"symfony/http-kernel": "^4.0 || ^5.0",
"symfony/security-bundle": "^4.0 || ^5.0",
"symfony/security-core": "^4.3 || ^5.0",
"symfony/validator": "^4.4.4 || ^5.0.4"
},
"require-dev": {
"doctrine/annotations": "^1.7",
"liip/rmt": "^1.6",
"mockery/mockery": "^1.2.3",
"nicwortel/coding-standard": "^2.0",
"phpstan/phpstan": "^0.12.7",
"phpunit/phpunit": "^9.4",
"symfony/framework-bundle": "^4.0 || ^5.0"
},
"conflict": {
"doctrine/doctrine-cache-bundle": "<1.3.1",
"doctrine/common": "<2.12"
},
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": {
"NicWortel\\CommandPipeline\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"NicWortel\\CommandPipeline\\Tests\\Unit\\": "tests/unit",
"NicWortel\\CommandPipeline\\Tests\\Integration\\": "tests/integration",
"NicWortel\\CommandPipeline\\Tests\\System\\": "tests/system"
}
}
}