-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
33 lines (33 loc) · 925 Bytes
/
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
{
"name": "gpslab/domain-event-bundle",
"license": "MIT",
"type": "symfony-bundle",
"homepage": "https://github.com/gpslab/domain-event-bundle",
"description": "Bundle to create the domain layer of your DDD application",
"autoload": {
"psr-4": {
"GpsLab\\Bundle\\DomainEvent\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"GpsLab\\Bundle\\DomainEvent\\Tests\\": "tests/"
}
},
"require": {
"php": ">=5.5.0",
"gpslab/domain-event": "~2.0",
"symfony/http-kernel": "~2.3|~3.0|~4.0|~5.0",
"symfony/dependency-injection": "~2.3|~3.0|~4.0|~5.0",
"symfony/expression-language": "~2.3|~3.0|~4.0|~5.0",
"doctrine/orm": "~2.4"
},
"require-dev": {
"phpunit/phpunit": "^4.8.36"
},
"extra": {
"branch-alias": {
"dev-master": "2.0-dev"
}
}
}