-
Notifications
You must be signed in to change notification settings - Fork 8
/
composer.json
executable file
·46 lines (46 loc) · 1.34 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
{
"name": "keen-io/keen-io-bundle",
"type": "symfony-bundle",
"description": "Symfony Bundle for Keen IO",
"keywords": ["keen", "keen.io", "events", "analytics", "symfony", "bundle" ],
"homepage": "https://github.com/keenlabs/KeenClient-PHP-Sf2",
"license": "MIT",
"authors": [
{
"name": "Keith Kirk",
"email": "[email protected]",
"role": "developer",
"homepage": "http://kmfk.io"
}
],
"support": {
"email": "[email protected]"
},
"require": {
"php": ">=7.2",
"keen-io/keen-io": "~2.5",
"symfony/config": "^4.4 || ^5.4 || ^6.0 || ^7.0",
"symfony/dependency-injection": "^4.4 || ^5.4 || ^6.0 || ^7.0",
"symfony/http-kernel": "^4.4.13 || ^5.4 || ^6.0 || ^7.0"
},
"require-dev": {
"symfony/phpunit-bridge": "^6.4.2 || ^7.0.2",
"symfony/yaml": "^4.4 || ^5.4 || ^6.0 || ^7.0",
"phpunit/phpunit": "^8.5.2 || ^9.6.15"
},
"autoload": {
"psr-4": {
"KeenIO\\Bundle\\KeenIOBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"KeenIO\\Bundle\\KeenIOBundle\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
}
}