-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathcomposer.json
40 lines (40 loc) · 1.04 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
{
"name": "bornfreee/tactician-domain-events-bundle",
"description": "Bundle to integrate Tactician Domain Events library with Symfony project",
"license": "MIT",
"authors": [
{
"name": "Maks Rafalko",
"email": "maks.rafalko@gmail.com",
"role": "Author"
}
],
"keywords" : [
"tactician",
"domain",
"events",
"bundle",
"symfony"
],
"autoload": {
"psr-4": {
"BornFree\\TacticianDomainEventBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"BornFree\\TacticianDomainEventBundle\\Tests\\": "tests/"
}
},
"require-dev": {
"phpunit/phpunit": "^5.7"
},
"require": {
"php": ">=5.5",
"symfony/config": "^2.8|^3.0|^4.0|^5.0",
"symfony/http-kernel": "^2.8|^3.0|^4.0|^5.0",
"symfony/dependency-injection": "^2.8|^3.0|^4.0|^5.0",
"bornfree/tactician-doctrine-domain-events": "^0.4.0"
},
"minimum-stability": "stable"
}