-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (44 loc) · 1017 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
34
35
36
37
38
39
40
41
42
43
44
{
"name": "narrator/narrator-bundle",
"description": "Event library bundle",
"type": "library",
"keywords": [
"mleko",
"narrator",
"event",
"bundle",
"symfony"
],
"license": "MIT",
"authors": [
{
"name": "Daniel Król",
"email": "[email protected]"
}
],
"require": {
"php": "^5.6|^7.0",
"narrator/narrator": "^0.4",
"symfony/config": "^2.3|^3.0|^4.0",
"symfony/dependency-injection": "^2.3|^3.0|^4.0",
"symfony/http-kernel": "^2.3|^3.0|^4.0"
},
"require-dev": {
"mikey179/vfsstream": "^1.6",
"phpunit/phpunit": "^5.6",
"symfony/expression-language": "^3.1"
},
"autoload": {
"psr-4": {
"Mleko\\Narrator\\Bundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Mleko\\Narrator\\Bundle\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit"
}
}